X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f80bf901946b8b8013b98b51c2c2fd2bd195fe80..bc55104d9ab0b0b835644f17a152b4fbbfa8c7b9:/include/wx/wizard.h diff --git a/include/wx/wizard.h b/include/wx/wizard.h index 05c3842f1b..b402cd5fea 100644 --- a/include/wx/wizard.h +++ b/include/wx/wizard.h @@ -63,10 +63,10 @@ public: // cases - override this method if you want to create the bitmap to be used // dynamically or to do something even more fancy. It's ok to return // wxNullBitmap from here - the default one will be used then. - virtual wxBitmap GetBitmap() const { return m_PageBitmap; } + virtual wxBitmap GetBitmap() const { return m_bitmap; } protected: - wxBitmap m_PageBitmap; + wxBitmap m_bitmap; private: DECLARE_ABSTRACT_CLASS(wxWizardPage) @@ -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