#include "wx/bitmap.h"
#include "wx/button.h"
-extern WXDLLEXPORT_DATA(const wxChar*) wxButtonNameStr;
+extern WXDLLEXPORT_DATA(const wxChar) wxButtonNameStr[];
// ----------------------------------------------------------------------------
// wxBitmapButton: a button which shows bitmaps instead of the usual string.
// deprecated synonym for SetBitmapLabel()
#if WXWIN_COMPATIBILITY_2_6
wxDEPRECATED( void SetLabel(const wxBitmap& bitmap) );
- { SetBitmapLabel(bitmap); }
// prevent virtual function hiding
virtual void SetLabel(const wxString& label)
- { wxWindowBase::SetLabel(label); }
+ { wxWindow::SetLabel(label); }
#endif // WXWIN_COMPATIBILITY_2_6
protected:
};
#if WXWIN_COMPATIBILITY_2_6
- inline void SetLabel(const wxBitmap& bitmap) { SetBitmapLabel(bitmap); }
+inline void wxBitmapButtonBase::SetLabel(const wxBitmap& bitmap)
+{
+ SetBitmapLabel(bitmap);
+}
#endif // WXWIN_COMPATIBILITY_2_6
#if defined(__WXUNIVERSAL__)