]> git.saurik.com Git - wxWidgets.git/commitdiff
adding explicit copy and assignment
authorStefan Csomor <csomor@advancedconcepts.ch>
Tue, 18 Dec 2007 13:15:05 +0000 (13:15 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Tue, 18 Dec 2007 13:15:05 +0000 (13:15 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50795 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/mac/carbon/colour.h

index b98d292dfdbfc8c0418ca899791b42c3b3fc9751..1036cd8507b78e38fb8bbbd9bafba8630a4a90c6 100644 (file)
@@ -28,6 +28,7 @@ public:
 
     // default
     wxColour() { }
 
     // default
     wxColour() { }
+    wxColour( const wxColour& col );
     DEFINE_STD_WXCOLOUR_CONSTRUCTORS
 
     // dtor
     DEFINE_STD_WXCOLOUR_CONSTRUCTORS
 
     // dtor
@@ -59,6 +60,7 @@ public:
     wxColour(const RGBColor& col);
     wxColour& operator=(const RGBColor& col);
     wxColour& operator=(CGColorRef col);
     wxColour(const RGBColor& col);
     wxColour& operator=(const RGBColor& col);
     wxColour& operator=(CGColorRef col);
+    wxColour& operator=(const wxColour& col);
 
 protected :
 
 
 protected :