[Xfce4-commits] r25111 - in xfce4-panel/trunk: . panel

Nick Schermer nick at xfce.org
Sun Mar 4 20:48:52 CET 2007


Author: nick
Date: 2007-03-04 19:48:52 +0000 (Sun, 04 Mar 2007)
New Revision: 25111

Modified:
   xfce4-panel/trunk/ChangeLog
   xfce4-panel/trunk/panel/panel-dialogs.c
Log:
	
	* panel/panel-dialogs.c: Remove the position combobox, this is not working
	  and thus only confusing for other people ^_^.

Modified: xfce4-panel/trunk/ChangeLog
===================================================================
--- xfce4-panel/trunk/ChangeLog	2007-03-04 19:40:31 UTC (rev 25110)
+++ xfce4-panel/trunk/ChangeLog	2007-03-04 19:48:52 UTC (rev 25111)
@@ -1,3 +1,8 @@
+2007-03-04 20:48  nick
+	
+	* panel/panel-dialogs.c: Remove the position combobox, this is not working
+	  and thus only confusing for other people ^_^.
+
 2007-03-04 20:32  nick
 
 	* libxfce4panel/xfce-panel-macros.{c,h}: Add a macro for

Modified: xfce4-panel/trunk/panel/panel-dialogs.c
===================================================================
--- xfce4-panel/trunk/panel/panel-dialogs.c	2007-03-04 19:40:31 UTC (rev 25110)
+++ xfce4-panel/trunk/panel/panel-dialogs.c	2007-03-04 19:48:52 UTC (rev 25111)
@@ -85,7 +85,9 @@
     GtkWidget   *size;
     GtkWidget   *transparency;
     GtkWidget   *activetrans;
+#if 0
     GtkWidget   *position;
+#endif
 
     /* monitors */
     GPtrArray   *monitors;
@@ -1383,7 +1385,7 @@
 
     panel_set_activetrans (pmd->panel, !gtk_toggle_button_get_active (tb));
 }
-
+#if 0
 static void
 popup_position_changed (GtkComboBox        *box,
                         PanelManagerDialog *pmd)
@@ -1391,7 +1393,7 @@
     if (pmd->updating)
         return;
 }
-
+#endif
 static void
 add_appearance_options (GtkBox             *box,
                         PanelManagerDialog *pmd)
@@ -1490,7 +1492,7 @@
     gtk_widget_show (label);
     gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
     gtk_size_group_add_widget (size_group, label);
-
+#if 0
     pmd->position = gtk_combo_box_new_text ();
     gtk_widget_show (pmd->position);
     gtk_box_pack_start (GTK_BOX (hbox), pmd->position, TRUE, TRUE, 0);
@@ -1503,7 +1505,7 @@
 
     g_signal_connect (G_OBJECT (pmd->position), "value-changed",
                       G_CALLBACK (popup_position_changed), pmd);
-
+#endif
     g_object_unref (G_OBJECT (size_group));
 }
 



More information about the Xfce4-commits mailing list