]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/statbmp.h
since somehow db does not compile properly anymore (was not tested anyway) now disabl...
[wxWidgets.git] / include / wx / mac / statbmp.h
index a457c967f92df76ae0de26606c5840841963b1f6..62291ce3ce09fe3ae10a9d8508bd177cdd59b2b9 100644 (file)
@@ -47,28 +47,16 @@ class WXDLLEXPORT wxStaticBitmap: public wxControl
 
   virtual void Command(wxCommandEvent& WXUNUSED(event)) {};
   virtual void ProcessCommand(wxCommandEvent& WXUNUSED(event)) {};
-       virtual void OnPaint( wxPaintEvent &event ) ;
+  virtual void OnPaint( wxPaintEvent &event ) ;
   void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
 
-  inline wxBitmap& GetBitmap() const { return (wxBitmap&) m_messageBitmap; }
-
-    // for compatibility with wxMSW
-    const wxIcon& GetIcon() const
-    {
-        // don't use wxDynamicCast, icons and bitmaps are really the same thing
-        // in wxGTK
-        return (const wxIcon &)m_messageBitmap;
-    }
-
-    // for compatibility with wxMSW
-    void  SetIcon(const wxIcon& icon)
-    {
-        SetBitmap( (const wxBitmap&) icon );
-    }
+  inline const wxBitmap& GetBitmap() const { return m_messageBitmap; }
+  const wxIcon& GetIcon() const { return (const wxIcon&) GetBitmap() ; }
+  void  SetIcon(const wxIcon& icon) { SetBitmap( (const wxBitmap &)icon ) ; }
 
   // overriden base class virtuals
   virtual bool AcceptsFocus() const { return FALSE; }
-       wxSize DoGetBestSize() const ;
+  wxSize DoGetBestSize() const ;
 
  protected:
   wxBitmap m_messageBitmap;