]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/wince/helpwce.h
Fix wxPropertyGrid::GetPropertyRect when the last item is collapsed.
[wxWidgets.git] / include / wx / msw / wince / helpwce.h
index 3dad7eda64d15f0c86f27d647ee692a043b7e884..20cd4e405c17707b2711a52e21abde9fbbf18eac 100644 (file)
@@ -4,7 +4,6 @@
 // Author:      Julian Smart
 // Modified by:
 // Created:     2003-07-12
-// RCS-ID:      $Id$
 // Copyright:   (c) Julian Smart
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #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 +46,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)