]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/colordlg.cpp
added some missing mac headers
[wxWidgets.git] / src / mac / carbon / colordlg.cpp
index bb2361b3ff096d28c5586c20217c94b71fff0f46..3c8411319b333758f23b5b26de4f970a09fa6c64 100644 (file)
@@ -7,7 +7,7 @@
 // Created:     1998-01-01
 // RCS-ID:      $Id$
 // Copyright:   (c) Stefan Csomor
-// Licence:    wxWindows licence
+// Licence:       wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifdef __GNUG__
@@ -50,20 +50,20 @@ bool wxColourDialog::Create(wxWindow *parent, wxColourData *data)
 
 int wxColourDialog::ShowModal()
 {
-       Point where ;
-       RGBColor currentColor = *((RGBColor*)m_colourData.dataColour.GetPixel()) , newColor ;
-       
-       where.h = where.v = -1;
+    Point where ;
+    RGBColor currentColor = *((RGBColor*)m_colourData.m_dataColour.GetPixel()) , newColor ;
+    
+    where.h = where.v = -1;
 
-       if (GetColor( where, "\pSelect a new palette color.", &currentColor, &newColor ))
-       {
-               m_colourData.dataColour.Set( (WXCOLORREF*) &newColor ) ;
-       return wxID_OK;
-       }
-       else
-       {
-       return wxID_CANCEL;
-       }
+    if (GetColor( where, "\pSelect a new palette color.", &currentColor, &newColor ))
+    {
+        m_colourData.m_dataColour.Set( (WXCOLORREF*) &newColor ) ;
+        return wxID_OK;
+    }
+    else
+    {
+        return wxID_CANCEL;
+    }
 
     return wxID_CANCEL;
 }