]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/statbmp.cpp
fixed frame style
[wxWidgets.git] / src / gtk / statbmp.cpp
index 30431837bffdd954bf70fb5067a94447c2999da5..ad12ed7cf20e36f4544ee1a55c23ab656aa91903 100644 (file)
@@ -83,4 +83,13 @@ void wxStaticBitmap::SetBitmap( const wxBitmap &bitmap )
     }
 }
 
+wxIcon& wxStaticBitmap::GetIcon()
+{
+    wxIcon *icon = wxDynamicCast(&m_bitmap, wxIcon);
+    
+    if (!icon) return wxNullIcon;
+    
+    return *icon;
+}
+
 #endif