[Xfce4-commits] r30103 - in xfce4-panel/branches/xfce_4_6: . panel

Nick Schermer nick at xfce.org
Sat Jun 27 21:38:31 CEST 2009


Author: nick
Date: 2009-06-27 19:38:30 +0000 (Sat, 27 Jun 2009)
New Revision: 30103

Modified:
   xfce4-panel/branches/xfce_4_6/NEWS
   xfce4-panel/branches/xfce_4_6/panel/panel-app.c
Log:
Don't send -r to session restart command (bug #5454).


Modified: xfce4-panel/branches/xfce_4_6/NEWS
===================================================================
--- xfce4-panel/branches/xfce_4_6/NEWS	2009-06-27 19:37:43 UTC (rev 30102)
+++ xfce4-panel/branches/xfce_4_6/NEWS	2009-06-27 19:38:30 UTC (rev 30103)
@@ -3,6 +3,7 @@
 - Properly set orientation of tasklist handler (bug #5222).
 - Fix launcher with 'Run in Terminal' (part of bug #5301).
 - Fix typo preventing build on older gtk versions.
+- Don't send -r to session restart command (bug #5454).
 
 
 4.6.1

Modified: xfce4-panel/branches/xfce_4_6/panel/panel-app.c
===================================================================
--- xfce4-panel/branches/xfce_4_6/panel/panel-app.c	2009-06-27 19:37:43 UTC (rev 30102)
+++ xfce4-panel/branches/xfce_4_6/panel/panel-app.c	2009-06-27 19:38:30 UTC (rev 30103)
@@ -710,10 +710,9 @@
                  TRUE);
 
     /* session management */
-    restart_command    = g_new (gchar *, 3);
+    restart_command    = g_new (gchar *, 2);
     restart_command[0] = g_strdup ("xfce4-panel");
-    restart_command[1] = g_strdup ("-r");
-    restart_command[2] = NULL;
+    restart_command[1] = NULL;
 
     panel_app.session_client = 
         client_session_new_full (NULL, 




More information about the Xfce4-commits mailing list