]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/statbmp.h
use generated VC++ projects with dependencies
[wxWidgets.git] / include / wx / mac / statbmp.h
index 858c6da40bbbef026217b44d7207eea3dcb36595..8a16726c572e938905e0b3360e829e626351be68 100644 (file)
@@ -6,13 +6,13 @@
 // Created:     1998-01-01
 // RCS-ID:      $Id$
 // Copyright:   (c) Stefan Csomor
-// Licence:    wxWindows licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef _WX_STATBMP_H_
 #define _WX_STATBMP_H_
 
-#if defined(__GNUG__) && !defined(__APPLE__)
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma interface "statbmp.h"
 #endif
 
@@ -50,8 +50,8 @@ class WXDLLEXPORT wxStaticBitmap: public wxStaticBitmapBase
   wxBitmap GetBitmap() const { return m_bitmap; }
   wxIcon GetIcon() const
       {
-         // icons and bitmaps are really the same thing in wxMac
-         return (const wxIcon &)m_bitmap;
+      // icons and bitmaps are really the same thing in wxMac
+      return (const wxIcon &)m_bitmap;
       }
   void  SetIcon(const wxIcon& icon) { SetBitmap( (const wxBitmap &)icon ) ; }
 
@@ -61,7 +61,7 @@ class WXDLLEXPORT wxStaticBitmap: public wxStaticBitmapBase
 
  protected:
   wxBitmap m_bitmap;
-       DECLARE_EVENT_TABLE() 
+    DECLARE_EVENT_TABLE() 
 };
 
 #endif