]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cocoa/colour.h
Applied correct filename case for header imports from patch #881258
[wxWidgets.git] / include / wx / cocoa / colour.h
index 9756d6cca401eabc562d47d901446f171a70925e..694e870b733c3246f3bac20f11da6da49c10311c 100644 (file)
@@ -33,7 +33,7 @@ public:
     wxColour( unsigned long colRGB )
     :   m_cocoaNSColor(NULL)
     {   Set(colRGB); }
-  
+
     // implicit conversion from the colour name
     wxColour( const wxString &colourName )
     :   m_cocoaNSColor(NULL)
@@ -62,10 +62,10 @@ public:
     // comparison
     bool operator == (const wxColour& colour) const
     {
-        return (m_cocoaNSColor == colour.m_cocoaNSColor &&
-            m_red == colour.m_red && 
-            m_green == colour.m_green && 
-            m_blue == colour.m_blue);
+        return (m_cocoaNSColor == colour.m_cocoaNSColor
+            && m_red == colour.m_red
+            && m_green == colour.m_green
+            && m_blue == colour.m_blue);
     }
     bool operator != (const wxColour& colour) const
     {   return !(*this == colour); }
@@ -83,7 +83,6 @@ public:
             (unsigned char)(colRGB >> 16));
     }
 
-protected:
     void InitFromName(const wxString& col);
 
 private: