diff options
author | Matthias Classen <mclassen@redhat.com> | 2010-10-21 17:58:08 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2010-10-21 17:58:08 +0800 |
commit | 60fdf062468a581293d651da936dd5485ef32c8f (patch) | |
tree | 1de94ea93d30ca3065411308fc854f7bb7fb890a /src/bookmarks | |
parent | ab1ddba880306b133d221822cc610f1276d38e20 (diff) | |
download | gsoc2013-epiphany-60fdf062468a581293d651da936dd5485ef32c8f.tar gsoc2013-epiphany-60fdf062468a581293d651da936dd5485ef32c8f.tar.gz gsoc2013-epiphany-60fdf062468a581293d651da936dd5485ef32c8f.tar.bz2 gsoc2013-epiphany-60fdf062468a581293d651da936dd5485ef32c8f.tar.lz gsoc2013-epiphany-60fdf062468a581293d651da936dd5485ef32c8f.tar.xz gsoc2013-epiphany-60fdf062468a581293d651da936dd5485ef32c8f.tar.zst gsoc2013-epiphany-60fdf062468a581293d651da936dd5485ef32c8f.zip |
Use the new GtkComboText APIs
Signed-off-by: Xan Lopez <xan@gnome.org>
Diffstat (limited to 'src/bookmarks')
-rw-r--r-- | src/bookmarks/ephy-bookmarks-editor.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c index 32a25caa1..be79d00f1 100644 --- a/src/bookmarks/ephy-bookmarks-editor.c +++ b/src/bookmarks/ephy-bookmarks-editor.c @@ -889,13 +889,13 @@ cmd_bookmarks_export (GtkAction *action, /* Make a format selection combo & label */ label = gtk_label_new_with_mnemonic (_("File f_ormat:")); - combo = gtk_combo_box_new_text (); + combo = gtk_combo_box_text_new (); gtk_label_set_mnemonic_widget (GTK_LABEL (label), combo); for (format = 0; format < G_N_ELEMENTS (export_formats); ++format) { - gtk_combo_box_append_text (GTK_COMBO_BOX (combo), - _(export_formats[format].name)); + gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (combo), + _(export_formats[format].name)); } g_object_set_data (G_OBJECT (dialog), "format-combo", combo); |