summaryrefslogtreecommitdiff
path: root/gnome-settings-daemon
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2008-11-24 21:25:25 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2008-11-24 21:25:25 +0000
commita733a3d2b61f4fd0b864109a46e991b12ee29214 (patch)
tree76db7da325d2364ac65d1344870b3ab62af3d87d /gnome-settings-daemon
parentf4232e783bcb7af2cfb03469f7fcbba4a72126a8 (diff)
downloadgnome-settings-daemon-a733a3d2b61f4fd0b864109a46e991b12ee29214.tar.gz
Fix --no-daemon (bug #562175)
2008-11-24 Behdad Esfahbod <behdad@gnome.org> * gnome-settings-daemon/main.c (parse_args), (main): Fix --no-daemon (bug #562175) svn path=/trunk/; revision=611
Diffstat (limited to 'gnome-settings-daemon')
-rw-r--r--gnome-settings-daemon/main.c51
1 files changed, 38 insertions, 13 deletions
diff --git a/gnome-settings-daemon/main.c b/gnome-settings-daemon/main.c
index d0dcf435..c96381bf 100644
--- a/gnome-settings-daemon/main.c
+++ b/gnome-settings-daemon/main.c
@@ -310,6 +310,36 @@ daemon_terminate_parent (void)
close (pipefds[1]);
}
+static void
+parse_args (int *argc, char ***argv)
+{
+ GError *error;
+ GOptionContext *context;
+
+ gnome_settings_profile_start (NULL);
+
+
+ context = g_option_context_new (NULL);
+
+ g_option_context_add_main_entries (context, entries, NULL);
+ g_option_context_add_group (context, gtk_get_option_group (FALSE));
+
+ error = NULL;
+ if (!g_option_context_parse (context, argc, argv, &error)) {
+ if (error != NULL) {
+ g_warning ("%s", error->message);
+ g_error_free (error);
+ } else {
+ g_warning ("Unable to initialize GTK+");
+ }
+ exit (EXIT_FAILURE);
+ }
+
+ g_option_context_free (context);
+
+ gnome_settings_profile_end (NULL);
+}
+
int
main (int argc, char *argv[])
{
@@ -322,29 +352,24 @@ main (int argc, char *argv[])
gnome_settings_profile_start (NULL);
- daemon_start ();
-
bindtextdomain (GETTEXT_PACKAGE, GNOME_SETTINGS_LOCALEDIR);
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
textdomain (GETTEXT_PACKAGE);
-
setlocale (LC_ALL, "");
+ parse_args (&argc, &argv);
+
+ daemon_start ();
+
g_type_init ();
- gnome_settings_profile_start ("gtk init");
- error = NULL;
- if (! gtk_init_with_args (&argc, &argv, NULL, entries, NULL, &error)) {
- if (error != NULL) {
- g_warning ("%s", error->message);
- g_error_free (error);
- } else {
- g_warning ("Unable to initialize GTK+");
- }
+ gnome_settings_profile_start ("opening gtk display");
+ if (! gtk_init_check (NULL, NULL)) {
+ g_warning ("Unable to initialize GTK+");
daemon_terminate_parent ();
exit (EXIT_FAILURE);
}
- gnome_settings_profile_end ("gtk init");
+ gnome_settings_profile_end ("opening gtk display");
daemon_detach ();