fixing -fvisibility-inlines-hidden problem (IsOk function didn't get exported)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44007 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2006-12-19 05:43:19 +00:00
parent f0db59f269
commit f84a986cfc
2 changed files with 7 additions and 1 deletions

View File

@@ -31,7 +31,7 @@ public:
// accessors
bool Ok() const { return IsOk(); }
bool IsOk() const {return m_isInit; }
bool IsOk() const;
unsigned char Red() const { return m_red; }
unsigned char Green() const { return m_green; }

View File

@@ -63,3 +63,9 @@ void wxColour::FromRGBColor( WXCOLORREF* color )
m_blue = col->blue >> 8;
m_green = col->green >> 8;
}
bool wxColour::IsOk() const
{
return m_isInit;
}