-  m_alreadySent = FALSE;
-  m_needParent = TRUE;
-  
-  PreCreation( parent, id, pos, size, style, name );
-  
-  SetValidator( validator );
-
-  m_widget = gtk_combo_new();
-  
-  wxSize newSize = size;
-  if (newSize.x == -1) newSize.x = 100;
-  if (newSize.y == -1) newSize.y = 26;
-  SetSize( newSize.x, newSize.y );
-  
-  GtkWidget *list = GTK_COMBO(m_widget)->list;
-  
-  for (int i = 0; i < n; i++)
-  {
-    GtkWidget *list_item = gtk_list_item_new_with_label( choices[i] ); 
-  
-    m_clientData.Append( (wxObject*)NULL );
-    
-    gtk_container_add( GTK_CONTAINER(list), list_item );
-    
-    gtk_widget_realize( list_item );
-    gtk_widget_realize( GTK_BIN(list_item)->child );
-    
-    gtk_widget_show( list_item );
-    
-    gtk_signal_connect( GTK_OBJECT(list_item), "select", 
-      GTK_SIGNAL_FUNC(gtk_combo_clicked_callback), (gpointer)this );
-  }
-  
-  PostCreation();
-
-  ConnectWidget( GTK_COMBO(m_widget)->button );
-  
-  if (!value.IsNull()) SetValue( value );
-    
-  gtk_widget_realize( GTK_COMBO(m_widget)->list );
-  gtk_widget_realize( GTK_COMBO(m_widget)->entry );
-  gtk_widget_realize( GTK_COMBO(m_widget)->button );
-  
-  SetBackgroundColour( parent->GetBackgroundColour() );
-  SetForegroundColour( parent->GetForegroundColour() );
-
-  Show( TRUE );
-    
-  return TRUE;