X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a31a5f85341a2ef131d86a1dee12f3d6c8156118..adf2eb2d343159326a68ba1a9b1a76f60f30d937:/src/mac/colordlg.cpp

diff --git a/src/mac/colordlg.cpp b/src/mac/colordlg.cpp
index bb2361b3ff..134e40f445 100644
--- a/src/mac/colordlg.cpp
+++ b/src/mac/colordlg.cpp
@@ -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.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.dataColour.Set( (WXCOLORREF*) &newColor ) ;
+        return wxID_OK;
+    }
+    else
+    {
+        return wxID_CANCEL;
+    }
 
     return wxID_CANCEL;
 }