backwards incompatible change to wxWizardPage reverted

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12526 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2001-11-20 17:23:58 +00:00
parent a9fd2e6f1b
commit 636d266b89
2 changed files with 4 additions and 3 deletions

View File

@@ -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)