// 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; }
bool operator != (const wxColour& colour) const { return !(*this == colour); }
- WXCOLORREF GetPixel() const { return m_pixel; };
+ WXCOLORREF GetPixel() const { return m_pixel; }
public: