]> git.saurik.com Git - wxWidgets.git/commitdiff
Fixed "Bound pointer address" error under GCC-2.95
authorJ. Russell Smyth <drfish@cox.net>
Thu, 19 Aug 1999 05:37:18 +0000 (05:37 +0000)
committerJ. Russell Smyth <drfish@cox.net>
Thu, 19 Aug 1999 05:37:18 +0000 (05:37 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3425 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/wizard.cpp

index 14ecb1d6d6ce352f5a9b91f2d442f0bb84794fd2..b8952bdbe13fe0cc85ce90c9ad33c0ca93cb4114 100644 (file)
@@ -112,8 +112,8 @@ private:
 // ----------------------------------------------------------------------------
 
 BEGIN_EVENT_TABLE(wxWizardGeneric, wxDialog)
-    EVT_BUTTON(wxID_CANCEL, OnCancel)
-    EVT_BUTTON(-1, OnBackOrNext)
+    EVT_BUTTON(wxID_CANCEL, wxWizardGeneric::OnCancel)
+    EVT_BUTTON(-1, wxWizardGeneric::OnBackOrNext)
 END_EVENT_TABLE()
 
 IMPLEMENT_ABSTRACT_CLASS(wxWizard, wxDialog)