]> git.saurik.com Git - wxWidgets.git/commitdiff
fixing -fvisibility-inlines-hidden problem (IsOk function didn't get exported)
authorStefan Csomor <csomor@advancedconcepts.ch>
Tue, 19 Dec 2006 05:43:19 +0000 (05:43 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Tue, 19 Dec 2006 05:43:19 +0000 (05:43 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44007 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/mac/carbon/colour.h
src/mac/carbon/colour.cpp

index 40535989035294e58f59167ba719a3de0b92d5c6..9acf4d42b9d6e291abb105ff47db0bf614a8d093 100644 (file)
@@ -31,7 +31,7 @@ public:
 
     // accessors
     bool Ok() const { return IsOk(); }
 
     // 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; }
 
     unsigned char Red() const { return m_red; }
     unsigned char Green() const { return m_green; }
index 2572be337b952987cab1798446c0896abb8b8863..6a3562c3d43f2f33cff8fd3166bb6e9eac853559 100644 (file)
@@ -63,3 +63,9 @@ void wxColour::FromRGBColor( WXCOLORREF* color )
     m_blue = col->blue >> 8;
     m_green = col->green >> 8;
 }
     m_blue = col->blue >> 8;
     m_green = col->green >> 8;
 }
+
+bool wxColour::IsOk() const 
+{
+    return m_isInit; 
+}
+