[Xfce4-commits] <midori:master> Use GTK_COMBO_BOX_TEXT with Statusbar Features

Christian Dywan noreply at xfce.org
Thu Oct 20 23:40:02 CEST 2011


Updating branch refs/heads/master
         to b29ee13da66591fa3129015855f8957e30daa78a (commit)
       from 8f421d6cfc0b6942c1fcbc25779bf302f004c6be (commit)

commit b29ee13da66591fa3129015855f8957e30daa78a
Author: Christian Dywan <christian at twotoasts.de>
Date:   Thu Oct 20 23:36:34 2011 +0200

    Use GTK_COMBO_BOX_TEXT with Statusbar Features

 extensions/statusbar-features.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/extensions/statusbar-features.c b/extensions/statusbar-features.c
index a6b8acc..be47b9d 100644
--- a/extensions/statusbar-features.c
+++ b/extensions/statusbar-features.c
@@ -157,7 +157,7 @@ statusbar_features_app_add_browser_cb (MidoriApp*       app,
     button = gtk_combo_box_text_new_with_entry ();
     gtk_entry_set_width_chars (GTK_ENTRY (gtk_bin_get_child (GTK_BIN (button))), 4);
     for (i = 0; i < G_N_ELEMENTS (zoom_levels); i++)
-        gtk_combo_box_text_append_text (GTK_COMBO_BOX (button), zoom_levels[i].label);
+        gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (button), zoom_levels[i].label);
     gtk_box_pack_start (GTK_BOX (bbox), button, FALSE, FALSE, 2);
     g_signal_connect (button, "changed",
         G_CALLBACK (statusbar_features_zoom_level_changed_cb), browser);


More information about the Xfce4-commits mailing list