]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/statbmp.cpp
Added wxSound for Windows support (successful WAV playback on VC++ 5)
[wxWidgets.git] / src / gtk1 / statbmp.cpp
index e46ae8134d89d68019ecf6d159a48d7c5195a18a..f9e6700b8fead69f0477515021ff53e7f8b186c6 100644 (file)
@@ -58,14 +58,19 @@ bool wxStaticBitmap::Create( wxWindow *parent, wxWindowID id, const wxBitmap &bi
 {
     m_needParent = TRUE;
 
-    wxSize newSize = size;
-
-    PreCreation( parent, id, pos, size, style, name );
+    if (!PreCreation( parent, pos, size ) ||
+        !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name ))
+    {
+        wxFAIL_MSG( _T("wxXX creation failed") );
+       return FALSE;
+    }
 
     m_bitmap = bitmap;
 
     if (m_bitmap.Ok())
     {
+       wxSize newSize = size;
+
         GdkBitmap *mask = (GdkBitmap *) NULL;
         if ( m_bitmap.GetMask() )
             mask = m_bitmap.GetMask()->GetBitmap();