]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/wince/helpwce.h
Rebake trunk after wxWebView merge and add missing project files for the wxWebView...
[wxWidgets.git] / include / wx / msw / wince / helpwce.h
index 3dad7eda64d15f0c86f27d647ee692a043b7e884..9923e515c09eed60d618bb598c737056eda48bc3 100644 (file)
 
 #include "wx/helpbase.h"
 
-class WXDLLEXPORT wxWinceHelpController : public wxHelpControllerBase
+class WXDLLIMPEXP_CORE wxWinceHelpController : public wxHelpControllerBase
 {
 public:
-    wxWinceHelpController(wxWindow* parentWindow): wxHelpControllerBase(parentWindow) {}
+    wxWinceHelpController(wxWindow* parentWindow = NULL): wxHelpControllerBase(parentWindow) {}
     virtual ~wxWinceHelpController() {}
 
     // Must call this to set the filename
@@ -47,10 +47,6 @@ protected:
     bool ViewURL(const wxString& topic = wxEmptyString);
 
 private:
-    // eVC4 needs default constructor, otherwise error C2512
-    // but make it hidden
-    wxWinceHelpController(): wxHelpControllerBase(NULL) {}
-
     wxString m_helpFile;
 
     DECLARE_CLASS(wxWinceHelpController)