]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed typo in EVT_WIZARD_HELP definition (patch from Kevin Burge)
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 24 Jan 2002 21:00:58 +0000 (21:00 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 24 Jan 2002 21:00:58 +0000 (21:00 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13778 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/wizard.h

index 77289c2d19afaa69b37640a1d114596a2d3a85f1..b402cd5fea61a7692588ec59c7227124d9855555 100644 (file)
@@ -212,7 +212,7 @@ typedef void (wxEvtHandler::*wxWizardEventFunction)(wxWizardEvent&);
 #define EVT_WIZARD_CANCEL(id, fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_WIZARD_CANCEL, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxWizardEventFunction) & fn, (wxObject *)NULL),
 
 // the user pressed "Help" button 
-#define EVT_WIZARD_HELP(id, fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_WIZARD_HELP, id, -1, (wxObjectEventFunction) (wxEventFunction) wxWizardEventFunction) & fn, (wxObject *)NULL),
+#define EVT_WIZARD_HELP(id, fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_WIZARD_HELP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxWizardEventFunction) & fn, (wxObject *)NULL),
 
 #endif // wxUSE_WIZARDDLG