]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/statbmp.h
added support for <sub> and <sup> to wxHTML (based on patch #1263152)
[wxWidgets.git] / include / wx / msw / statbmp.h
index 780e5e4a1519752d5a3e9d68dc6718b53bbd1368..d580d8a7313162cc3e746593fee32016cb461339 100644 (file)
@@ -49,25 +49,9 @@ public:
 
     virtual void SetIcon(const wxIcon& icon) { SetImage(&icon); }
     virtual void SetBitmap(const wxBitmap& bitmap) { SetImage(&bitmap); }
+    virtual wxBitmap GetBitmap() const;
+    virtual wxIcon GetIcon() const;
 
-    // assert failure is provoked by an attempt to get an icon from bitmap or
-    // vice versa
-    wxIcon GetIcon() const
-    {
-        wxASSERT_MSG( m_isIcon, _T("no icon in this wxStaticBitmap") );
-
-        return *(wxIcon *)m_image;
-    }
-
-    wxBitmap GetBitmap() const
-    {
-        wxASSERT_MSG( !m_isIcon, _T("no bitmap in this wxStaticBitmap") );
-
-        return *(wxBitmap *)m_image;
-    }
-
-    // implementation only from now on
-    // -------------------------------
 
 protected:
     virtual wxBorder GetDefaultBorder() const;