]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/radiobox.cpp
Added missing files to filelist.txt and regenerated makefiles.
[wxWidgets.git] / src / gtk / radiobox.cpp
index e1977ab2a4fbc6494c796b3e03378cdc6ba9710a..dcd089fa7e3c718a50786c9962a6d76319db5414 100644 (file)
@@ -85,11 +85,12 @@ bool wxRadioBox::Create( wxWindow *parent, wxWindowID id, const wxString& title,
     m_needParent = TRUE;
     m_acceptsFocus = TRUE;
 
-    PreCreation( parent, id, pos, size, style, name );
-
-#if wxUSE_VALIDATORS
-    SetValidator( validator );
-#endif
+    if (!PreCreation( parent, pos, size ) ||
+        !CreateBase( parent, id, pos, size, style, validator, name ))
+    {
+        wxFAIL_MSG( _T("wxRadioBox creation failed") );
+       return FALSE;
+    }
 
     m_widget = gtk_frame_new( title.mbc_str() );
 
@@ -270,7 +271,7 @@ wxSize wxRadioBox::LayoutItems()
             node = node->Next();
         }
         res.x = x+4;
-        res.y = 42;
+        res.y = 40;
     }
 
     return res;