]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/colour.h
Commited region iterator fix.
[wxWidgets.git] / include / wx / gtk / colour.h
index f41c52410df9798046de818191c8a750dca78e7d..01b49c45aafcbb58361c0d1f97d52ccdd54e3930 100644 (file)
@@ -27,7 +27,8 @@ public:
 
     virtual ~wxColour();
 
-    bool Ok() const { return m_refData != NULL; }
+    bool Ok() const { return IsOk(); }
+    bool IsOk() const { return m_refData != NULL; }
 
     bool operator == ( const wxColour& col ) const;
     bool operator != ( const wxColour& col ) const { return !(*this == col); }
@@ -35,6 +36,7 @@ public:
     unsigned char Red() const;
     unsigned char Green() const;
     unsigned char Blue() const;
+    unsigned char Alpha() const;
 
     // Implementation part
     void CalcPixel( GdkColormap *cmap );