]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/choice.cpp
Fixed a notebook crash and added more tests to sample.
[wxWidgets.git] / src / gtk / choice.cpp
index 41ef1aba6f6b15d5d3ef292a3524fee49ba797a2..f13d20eae3f0582dc56a25c149a4588c1534ead6 100644 (file)
@@ -38,7 +38,7 @@ static void gtk_choice_clicked_callback( GtkWidget *WXUNUSED(widget), wxChoice *
 {
     if (g_isIdle) wxapp_install_idle_handler();
 
-    if (!choice->HasVMT()) return;
+    if (!choice->m_hasVMT) return;
 
     if (g_blockEventsOnDrag) return;
 
@@ -99,9 +99,7 @@ bool wxChoice::Create( wxWindow *parent, wxWindowID id,
     }
     gtk_option_menu_set_menu( GTK_OPTION_MENU(m_widget), menu );
 
-    m_parent->AddChild( this );
-
-    (m_parent->m_insertCallback)( m_parent, this );
+    m_parent->DoAddChild( this );
 
     PostCreation();