]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/statbmp.h
Added code to look up main program symbols - unix only. PLEASE FIX FOR MSW.
[wxWidgets.git] / include / wx / gtk1 / statbmp.h
index 7f902acf835267d305ea9cb49f54336555b7c41c..cfedc1c50230334731ac9e6605809c2924c34787 100644 (file)
@@ -67,7 +67,12 @@ public:
     const wxBitmap& GetBitmap() const { return m_bitmap; }
 
     // for compatibility with wxMSW
-    wxIcon& GetIcon();
+    const wxIcon& GetIcon() const
+    {
+        // don't use wxDynamicCast, icons and bitmaps are really the same thing
+        // in wxGTK
+        return (const wxIcon &)m_bitmap;
+    }
 
 private:
     wxBitmap   m_bitmap;