]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/icon.cpp
fixed bug in SetStyle() which wouldn't reset the slant if it had been set before
[wxWidgets.git] / src / mac / icon.cpp
index e886c1073ca51df91d7d384906f292e45b9e33b5..5ec5f3ec80ee14571aea01c9ad8a472698435e6c 100644 (file)
@@ -31,24 +31,23 @@ wxIcon::wxIcon()
 }
 
 wxIcon::wxIcon(const char bits[], int width, int height) :
-    wxBitmap(bits,width,height )
+    wxBitmap(bits, width, height)
 {
     
 }
 
 wxIcon::wxIcon( const char **bits ) :
-    wxBitmap(bits  )
+    wxBitmap(bits)
 {
 }
 
 wxIcon::wxIcon( char **bits ) :
-    wxBitmap(bits )
+    wxBitmap(bits)
 {
 }
 
 wxIcon::wxIcon(const wxString& icon_file, int flags,
     int desiredWidth, int desiredHeight)
-
 {
     LoadFile(icon_file, (wxBitmapType) flags, desiredWidth, desiredHeight);
 }