X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ef0e92205a01c7d0ca6f381cc690cb5d4fa595c9..66c2bf7b1d9326fb650acfaae22ec50528cfbf7c:/include/wx/palette.h?ds=sidebyside diff --git a/include/wx/palette.h b/include/wx/palette.h index 02edb405b5..85bf7dd689 100644 --- a/include/wx/palette.h +++ b/include/wx/palette.h @@ -4,7 +4,6 @@ // Author: Julian Smart // Modified by: // Created: -// RCS-ID: $Id$ // Copyright: (c) Julian Smart // Licence: wxWindows Licence ///////////////////////////////////////////////////////////////////////////// @@ -25,19 +24,15 @@ class WXDLLIMPEXP_CORE wxPaletteBase: public wxGDIObject public: virtual ~wxPaletteBase() { } - virtual int GetColoursCount() const { wxFAIL_MSG( _T("not implemented") ); return 0; } + virtual int GetColoursCount() const { wxFAIL_MSG( wxT("not implemented") ); return 0; } }; -#if defined(__WXPALMOS__) - #include "wx/palmos/palette.h" -#elif defined(__WXMSW__) +#if defined(__WXMSW__) #include "wx/msw/palette.h" #elif defined(__WXX11__) || defined(__WXMOTIF__) #include "wx/x11/palette.h" #elif defined(__WXGTK__) || defined(__WXCOCOA__) #include "wx/generic/paletteg.h" -#elif defined(__WXMGL__) - #include "wx/mgl/palette.h" #elif defined(__WXMAC__) #include "wx/osx/palette.h" #elif defined(__WXPM__)