X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c801d85f158c4cba50b588807daabdcbd0ed3853..3848ffef9f9555f6c63daebd0f4e6a1fe2d183cc:/include/wx/helpbase.h diff --git a/include/wx/helpbase.h b/include/wx/helpbase.h index 24557948d1..1e7752f5c5 100644 --- a/include/wx/helpbase.h +++ b/include/wx/helpbase.h @@ -32,7 +32,8 @@ class WXDLLEXPORT wxHelpControllerBase: public wxObject // Must call this to set the filename and server name. // server is only required when implementing TCP/IP-based // help controllers. - virtual bool Initialize(const wxString& file, int server = -1) = 0; + virtual bool Initialize(const wxString& file, int server) { return FALSE; }; + virtual bool Initialize(const wxString& file) = 0; // If file is "", reloads file given in Initialize virtual bool LoadFile(const wxString& file = "") = 0;