summaryrefslogtreecommitdiff
path: root/src/dialogs
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2013-01-27 22:44:06 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2013-01-27 22:44:06 (GMT)
commit24013fb80fc02d8918aea51ee169d6521c74ee42 (patch)
treea3b645be6a97abcd6c327c79b07bfde4a7db5dd2 /src/dialogs
parent5c7ea8e2137e4e5bb2887de0d1ffd8a0b277636e (diff)
Updated code and removed some GCC warnings.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@333 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/dialogs')
-rw-r--r--src/dialogs/goto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dialogs/goto.c b/src/dialogs/goto.c
index d280809..18c364d 100644
--- a/src/dialogs/goto.c
+++ b/src/dialogs/goto.c
@@ -168,7 +168,7 @@ GtkWidget *create_goto_dialog(GtkWindow *parent)
label = qck_create_label(NULL, NULL, _("Enter the value of the target address:"));
gtk_box_pack_start(GTK_BOX(vbox), label, TRUE, TRUE, 0);
- combobox = qck_create_combobox2(G_OBJECT(result), "combobox", NULL, NULL);
+ combobox = qck_create_combobox_with_entry(G_OBJECT(result), "combobox", NULL, NULL);
gtk_box_pack_start(GTK_BOX(vbox), combobox, TRUE, TRUE, 0);
entry = gtk_bin_get_child(GTK_BIN(combobox));