Sorry, forgot default value

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36026 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2005-10-27 21:00:26 +00:00
parent d2bad02dbb
commit ebefb30e51

View File

@@ -19,7 +19,7 @@
class WXDLLEXPORT 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)