X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e273151278d28cceefe6eee8c49bc6915306805d..bafd830636e54f3bf33910993a61e2972e99e2ca:/src/palmos/colour.cpp diff --git a/src/palmos/colour.cpp b/src/palmos/colour.cpp index a7581c4728..27d3010823 100644 --- a/src/palmos/colour.cpp +++ b/src/palmos/colour.cpp @@ -9,10 +9,6 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma implementation "colour.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" #include "wx/colour.h" @@ -110,5 +106,8 @@ wxColour::~wxColour() void wxColour::Set(unsigned char r, unsigned char g, unsigned char b) { + m_red = r; + m_green = g; + m_blue = b; + m_isInit = true; } -