virtual ~wxColour();
// accessors
- bool Ok() const {return m_isInit; }
+ bool Ok() const { return IsOk(); }
+ bool IsOk() const {return m_isInit; }
unsigned char Red() const { return m_red; }
unsigned char Green() const { return m_green; }
public:
WXCOLORREF m_pixel ;
- void FromRGBColor( const WXCOLORREF* color ) ;
+ void FromRGBColor( WXCOLORREF* color ) ;
private: