]> git.saurik.com Git - wxWidgets.git/commitdiff
WinCE build fix (we need default constructor).
authorWłodzimierz Skiba <abx@abx.art.pl>
Thu, 27 Oct 2005 20:57:10 +0000 (20:57 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Thu, 27 Oct 2005 20:57:10 +0000 (20:57 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36025 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/wince/helpwce.h

index 735a6cbc1d7826f07f5e0d496ea8ecc7ccc549ee..3dad7eda64d15f0c86f27d647ee692a043b7e884 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        helpwce.h
+// Name:        wx/msw/wince/helpwce.h
 // Purpose:     Help system: Windows CE help implementation
 // Author:      Julian Smart
 // Modified by:
@@ -46,7 +46,11 @@ protected:
     // View topic, or just the HTML file
     bool ViewURL(const wxString& topic = wxEmptyString);
 
-protected:
+private:
+    // eVC4 needs default constructor, otherwise error C2512
+    // but make it hidden
+    wxWinceHelpController(): wxHelpControllerBase(NULL) {}
+
     wxString m_helpFile;
 
     DECLARE_CLASS(wxWinceHelpController)
@@ -56,4 +60,3 @@ protected:
 
 #endif
 // _WX_HELPWCE_H_
-