]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cocoa/colour.h
don't pass window argument to NotifyCaptureLost, it's not needed/used
[wxWidgets.git] / include / wx / cocoa / colour.h
index db7a4e9444053caeb9a0757657d0e77686d0b997..f0e3829a73ddfc03f8008ae074c191ca13dc756c 100644 (file)
@@ -61,7 +61,21 @@ public:
 
     // Set() functions
     void Set( WX_NSColor aColor );
-
+    
+    // reroute the inherited ones
+    void Set(unsigned char red, unsigned char green, unsigned char blue)
+    { wxColourBase::Set(red,green,blue); }
+    
+    // implemented in colourcmn.cpp
+    bool Set(const wxChar *str)
+    { return wxColourBase::Set(str); }
+    
+    bool Set(const wxString &str)
+    { return wxColourBase::Set(str); }
+    
+    void Set(unsigned long colRGB)
+    { wxColourBase::Set(colRGB); }
+    
 protected:
     // puts the object in an invalid, uninitialized state
     void Init();