[Xfce4-commits] <ristretto:ristretto-0.3> Remove reference to gtk_combo_box_text

Stephan Arts noreply at xfce.org
Sun Jan 29 09:20:01 CET 2012


Updating branch refs/heads/ristretto-0.3
         to a4005e226864429f027aad86d1a2d1a74c8d28d0 (commit)
       from 9beba6d57c15cc79ba2e823f855825d89120f42d (commit)

commit a4005e226864429f027aad86d1a2d1a74c8d28d0
Author: Stephan Arts <stephan at xfce.org>
Date:   Sun Jan 29 09:17:47 2012 +0100

    Remove reference to gtk_combo_box_text

 src/main_window.c |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/main_window.c b/src/main_window.c
index 9d15fdf..806053f 100644
--- a/src/main_window.c
+++ b/src/main_window.c
@@ -1965,23 +1965,23 @@ cb_rstto_main_window_set_as_wallpaper (GtkWidget *widget, RsttoMainWindow *windo
                 0);
 
         choose_desktop_combo_box =
-                gtk_combo_box_text_new();
+                gtk_combo_box_new_text();
         gtk_box_pack_start (
                 GTK_BOX (content_area),
                 choose_desktop_combo_box,
                 FALSE,
                 FALSE,
                 0);
-        gtk_combo_box_text_insert_text(
-                GTK_COMBO_BOX_TEXT (choose_desktop_combo_box),
+        gtk_combo_box_insert_text(
+                GTK_COMBO_BOX (choose_desktop_combo_box),
                 DESKTOP_TYPE_NONE,
                 _("None"));
-        gtk_combo_box_text_insert_text (
-                GTK_COMBO_BOX_TEXT (choose_desktop_combo_box),
+        gtk_combo_box_insert_text (
+                GTK_COMBO_BOX (choose_desktop_combo_box),
                 DESKTOP_TYPE_XFCE,
                 _("Xfce"));
-        gtk_combo_box_text_insert_text (
-                GTK_COMBO_BOX_TEXT (choose_desktop_combo_box),
+        gtk_combo_box_insert_text (
+                GTK_COMBO_BOX (choose_desktop_combo_box),
                 DESKTOP_TYPE_GNOME,
                 _("GNOME"));
 


More information about the Xfce4-commits mailing list