public:
virtual ~wxPaletteBase() { }
- virtual bool Ok() const = 0;
- virtual int GetColoursCount() const { wxFAIL_MSG( _T("not implemented") ); return 0; };
+ virtual bool Ok() const { return IsOk(); }
+ virtual bool IsOk() const = 0;
+ virtual int GetColoursCount() const { wxFAIL_MSG( _T("not implemented") ); return 0; }
};
#if defined(__WXPALMOS__)
#include "wx/os2/palette.h"
#endif
-#if WXWIN_COMPATIBILITY_2_4
- #define wxColorMap wxPalette
- #define wxColourMap wxPalette
-#endif
-
#endif // wxUSE_PALETTE
#endif