X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..3c029873c66cfdc0dcbf52958970273435ba02fc:/include/wx/msw/helpwin.h diff --git a/include/wx/msw/helpwin.h b/include/wx/msw/helpwin.h index cec79159d9..24321b4166 100644 --- a/include/wx/msw/helpwin.h +++ b/include/wx/msw/helpwin.h @@ -6,16 +6,12 @@ // Created: 04/01/98 // RCS-ID: $Id$ // Copyright: (c) Julian Smart -// Licence: wxWidgets licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_HELPWIN_H_ #define _WX_HELPWIN_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma interface "helpwin.h" -#endif - #include "wx/wx.h" #if wxUSE_HELP @@ -25,10 +21,10 @@ class WXDLLEXPORT wxWinHelpController: public wxHelpControllerBase { DECLARE_CLASS(wxWinHelpController) - + public: - wxWinHelpController() {}; - ~wxWinHelpController() {}; + wxWinHelpController(wxWindow* parentWindow = NULL): wxHelpControllerBase(parentWindow) {} + virtual ~wxWinHelpController() {} // Must call this to set the filename virtual bool Initialize(const wxString& file); @@ -50,7 +46,7 @@ public: protected: // Append extension if necessary. wxString GetValidFilename(const wxString& file) const; - + private: wxString m_helpFile; };