diff options
| author | Cyrille Bagard <nocbos@gmail.com> | 2014-01-26 23:00:18 (GMT) | 
|---|---|---|
| committer | Cyrille Bagard <nocbos@gmail.com> | 2014-01-26 23:00:18 (GMT) | 
| commit | 84790a5b420d0a9ce658013573b180ce059db325 (patch) | |
| tree | 5000d25a0d5ede63e671364e1e017fbb6674b5f5 /src/dialogs/binparts.c | |
| parent | abb191e42e356914bd09176a6d6c5bf89ec50bbf (diff) | |
Saved the first steps of the migration to GTK+ v3.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@367 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/dialogs/binparts.c')
| -rw-r--r-- | src/dialogs/binparts.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/src/dialogs/binparts.c b/src/dialogs/binparts.c index 14e1422..6df3d0a 100644 --- a/src/dialogs/binparts.c +++ b/src/dialogs/binparts.c @@ -279,9 +279,9 @@ GtkWidget *create_sections_dialog(GLoadedBinary *binary, GtkWindow *parent)      g_signal_connect(G_OBJECT(comboboxentry), "changed", G_CALLBACK(on_model_change), ref); -    gtk_combo_box_append_text(GTK_COMBO_BOX(comboboxentry), _("Default")); -    gtk_combo_box_append_text(GTK_COMBO_BOX(comboboxentry), _("Routines")); -    gtk_combo_box_append_text(GTK_COMBO_BOX(comboboxentry), _("User")); +    gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(comboboxentry), _("Default")); +    gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(comboboxentry), _("Routines")); +    gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(comboboxentry), _("User"));      load_binary_current_parts(binary, ref); | 
