]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/colour.h
adding 10.4 build compatibility for osx cocoa, see #10361
[wxWidgets.git] / include / wx / gtk / colour.h
index 863cb4663c644aa58d051dbbf1c8fdaa4f3e7ef6..410705fe656b79f0861fbfa60e0bad7cdbf19faf 100644 (file)
@@ -19,18 +19,13 @@ class WXDLLIMPEXP_CORE wxColour : public wxColourBase
 public:
     // constructors
     // ------------
-
-    // default
-    wxColour() {}
     DEFINE_STD_WXCOLOUR_CONSTRUCTORS
     wxColour(const GdkColor& gdkColor);
 
     virtual ~wxColour();
 
-    bool IsOk() const { return m_refData != NULL; }
-
-    bool operator == ( const wxColour& col ) const;
-    bool operator != ( const wxColour& col ) const { return !(*this == col); }
+    bool operator==(const wxColour& col) const;
+    bool operator!=(const wxColour& col) const { return !(*this == col); }
 
     unsigned char Red() const;
     unsigned char Green() const;
@@ -40,13 +35,7 @@ public:
     // Implementation part
     void CalcPixel( GdkColormap *cmap );
     int GetPixel() const;
-#ifdef __WXGTK24__
     const GdkColor *GetColor() const;
-#else
-    // GDK functions from old gtk2 versions take non-const color parameters,
-    // too many uses to deal with individually
-    GdkColor *GetColor() const;
-#endif
 
 protected:
     virtual void