| 2917 pidgin_text_combo_box_entry_new(const char *default_item, GList *items) |
2917 pidgin_text_combo_box_entry_new(const char *default_item, GList *items) |
| 2918 { |
2918 { |
| 2919 GtkComboBox *ret = NULL; |
2919 GtkComboBox *ret = NULL; |
| 2920 GtkWidget *the_entry = NULL; |
2920 GtkWidget *the_entry = NULL; |
| 2921 |
2921 |
| 2922 ret = GTK_COMBO_BOX(gtk_combo_box_new_text()); |
2922 ret = GTK_COMBO_BOX(gtk_combo_box_entry_new_text()); |
| 2923 the_entry = gtk_entry_new(); |
2923 the_entry = gtk_entry_new(); |
| 2924 gtk_container_add(GTK_CONTAINER(ret), the_entry); |
2924 gtk_container_add(GTK_CONTAINER(ret), the_entry); |
| 2925 |
2925 |
| 2926 if (default_item) |
2926 if (default_item) |
| 2927 gtk_entry_set_text(GTK_ENTRY(the_entry), default_item); |
2927 gtk_entry_set_text(GTK_ENTRY(the_entry), default_item); |