]> www.fi.muni.cz Git - evince.git/commitdiff
Update smclient from libegg master.
authorChristian Persch <chpe@src.gnome.org>
Tue, 24 Mar 2009 21:48:05 +0000 (21:48 +0000)
committerChristian Persch <chpe@src.gnome.org>
Tue, 24 Mar 2009 21:48:05 +0000 (21:48 +0000)
* cut-n-paste/smclient/eggdesktopfile.c:
(egg_desktop_file_launchv), (egg_set_desktop_file):
* cut-n-paste/smclient/eggsmclient.c:
(egg_sm_client_get_option_group): Update smclient from libegg master.

svn path=/trunk/; revision=3557

ChangeLog
cut-n-paste/smclient/eggdesktopfile.c
cut-n-paste/smclient/eggsmclient.c

index 4ed30e4b52ee5933d577e11c0c11836c08cc32a2..46e106cabd2cd993363e422a56addef50713408c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2009-03-24  Christian Persch  <chpe@gnome.org>
+
+       * cut-n-paste/smclient/eggdesktopfile.c:
+       (egg_desktop_file_launchv), (egg_set_desktop_file):
+       * cut-n-paste/smclient/eggsmclient.c:
+       (egg_sm_client_get_option_group): Update smclient from libegg master.
+
 2009-03-19  Christian Persch  <chpe@gnome.org>
 
        * shell/ev-window.c: (ev_window_cmd_save_as),
index 1a20e96a55f5c60cb50e4f9ced713eeb976dda68..357e548f5b2aabce6ff173b0c87ca59d9d664d9d 100644 (file)
@@ -1072,7 +1072,7 @@ egg_desktop_file_launchv (EggDesktopFile *desktop_file,
                          GError **error)
 {
   EggDesktopFileLaunchOption option;
-  GSList *translated_documents, *docs;
+  GSList *translated_documents = NULL, *docs = NULL;
   char *command, **argv;
   int argc, i, screen_num;
   gboolean success, current_success;
@@ -1440,16 +1440,18 @@ egg_set_desktop_file (const char *desktop_file_path)
       g_error_free (error);
     }
 
-  /* Set localized application name and default window icon */
-  if (egg_desktop_file->name)
-    g_set_application_name (egg_desktop_file->name);
-  if (egg_desktop_file->icon)
-    {
-      if (g_path_is_absolute (egg_desktop_file->icon))
-       gtk_window_set_default_icon_from_file (egg_desktop_file->icon, NULL);
-      else
-       gtk_window_set_default_icon_name (egg_desktop_file->icon);
-    }
+  if (egg_desktop_file) {
+    /* Set localized application name and default window icon */
+    if (egg_desktop_file->name)
+      g_set_application_name (egg_desktop_file->name);
+    if (egg_desktop_file->icon)
+      {
+        if (g_path_is_absolute (egg_desktop_file->icon))
+          gtk_window_set_default_icon_from_file (egg_desktop_file->icon, NULL);
+        else
+          gtk_window_set_default_icon_name (egg_desktop_file->icon);
+      }
+  }
 
   G_UNLOCK (egg_desktop_file);
 }
index 8e2254f0389b9d6502cb596b8a275f17d6d53c8a..efa901d532457897b89d30a2806a2bb1cee86c87 100644 (file)
@@ -178,6 +178,7 @@ egg_sm_client_class_init (EggSMClientClass *klass)
 static gboolean sm_client_disable = FALSE;
 static char *sm_client_state_file = NULL;
 static char *sm_client_id = NULL;
+static char *sm_config_prefix = NULL;
 
 static gboolean
 sm_client_post_parse_func (GOptionContext  *context,
@@ -228,10 +229,17 @@ egg_sm_client_get_option_group (void)
     { "sm-client-id", 0, 0,
       G_OPTION_ARG_STRING, &sm_client_id,
       N_("Specify session management ID"), N_("ID") },
-    /* Compatibility options */
+    /* GnomeClient compatibility option */
     { "sm-disable", 0, G_OPTION_FLAG_HIDDEN,
       G_OPTION_ARG_NONE, &sm_client_disable,
       NULL, NULL },
+    /* GnomeClient compatibility option. This is a dummy option that only
+     * exists so that sessions saved by apps with GnomeClient can be restored
+     * later when they've switched to EggSMClient. See bug #575308.
+     */
+    { "sm-config-prefix", 0, G_OPTION_FLAG_HIDDEN,
+      G_OPTION_ARG_STRING, &sm_config_prefix,
+      NULL, NULL },
     { NULL }
   };
   GOptionGroup *group;