[Goodies-commits] r7548 - in xfce4-weather-plugin/trunk: . panel-plugin

Colin Leroy colin at xfce.org
Sat Jun 13 09:38:42 CEST 2009


Author: colin
Date: 2009-06-13 07:38:42 +0000 (Sat, 13 Jun 2009)
New Revision: 7548

Modified:
   xfce4-weather-plugin/trunk/ChangeLog
   xfce4-weather-plugin/trunk/panel-plugin/weather-summary.c
Log:
2009-06-13	Colin Leroy <colin at colino.net>

	* panel-plugin/weather-summary.c: fix bug #5127, "Bug: Wireless: UMTS |
	Improvement: Default: Forecast". The first part of it is probably fixed
	by the fix to bug #4118, this addresses the second part: Forecast tab
	by default. Also, rename "Summary" to "Details". 



Modified: xfce4-weather-plugin/trunk/ChangeLog
===================================================================
--- xfce4-weather-plugin/trunk/ChangeLog	2009-06-13 07:36:32 UTC (rev 7547)
+++ xfce4-weather-plugin/trunk/ChangeLog	2009-06-13 07:38:42 UTC (rev 7548)
@@ -1,5 +1,12 @@
 2009-06-13	Colin Leroy <colin at colino.net>
 
+	* panel-plugin/weather-summary.c: fix bug #5127, "Bug: Wireless: UMTS |
+	Improvement: Default: Forecast". The first part of it is probably fixed
+	by the fix to bug #4118, this addresses the second part: Forecast tab
+	by default. Also, rename "Summary" to "Details". 
+
+2009-06-13	Colin Leroy <colin at colino.net>
+
 	* panel-plugin/weather-translate.c: fix bug #4742, "Some strings are 
 	not localized".
 

Modified: xfce4-weather-plugin/trunk/panel-plugin/weather-summary.c
===================================================================
--- xfce4-weather-plugin/trunk/panel-plugin/weather-summary.c	2009-06-13 07:36:32 UTC (rev 7547)
+++ xfce4-weather-plugin/trunk/panel-plugin/weather-summary.c	2009-06-13 07:38:42 UTC (rev 7548)
@@ -583,11 +583,11 @@
   notebook = gtk_notebook_new ();
   gtk_container_set_border_width (GTK_CONTAINER (notebook), BORDER);
   gtk_notebook_append_page (GTK_NOTEBOOK (notebook),
-                            create_summary_tab (data, unit),
-                            gtk_label_new (_("Summary")));
-  gtk_notebook_append_page (GTK_NOTEBOOK (notebook),
                             create_forecast_tab (data, unit),
                             gtk_label_new (_("Forecast")));
+  gtk_notebook_append_page (GTK_NOTEBOOK (notebook),
+                            create_summary_tab (data, unit),
+                            gtk_label_new (_("Details")));
 
   gtk_box_pack_start (GTK_BOX (vbox), notebook, TRUE, TRUE, 0);
 




More information about the Goodies-commits mailing list