From 40aa3a2cf5cc982e60d80c15186bf5e476dd9499 Mon Sep 17 00:00:00 2001 From: infirit Date: Sat, 17 May 2014 02:26:25 +0200 Subject: Use gtk_combo_box_text_new for gtk+2 It was introduced in gtk+-2.24 --- applets/notification_area/testtray.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'applets') diff --git a/applets/notification_area/testtray.c b/applets/notification_area/testtray.c index 9feed828..f19663cd 100644 --- a/applets/notification_area/testtray.c +++ b/applets/notification_area/testtray.c @@ -162,15 +162,9 @@ create_tray_on_screen (GdkScreen *screen, label = gtk_label_new_with_mnemonic ("_Orientation:"); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0); -#if GTK_CHECK_VERSION (3, 0, 0) combo = gtk_combo_box_text_new (); gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (combo), "Horizontal"); gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (combo), "Vertical"); -#else - combo = gtk_combo_box_new_text (); - gtk_combo_box_append_text (GTK_COMBO_BOX (combo), "Horizontal"); - gtk_combo_box_append_text (GTK_COMBO_BOX (combo), "Vertical"); -#endif g_signal_connect (combo, "changed", G_CALLBACK (orientation_changed_cb), data); gtk_box_pack_start (GTK_BOX (hbox), combo, FALSE, FALSE, 0); -- cgit v1.2.1