+Fri Oct 24 17:54:17 2008 Søren Sandmann <sandmann@redhat.com>
+ + * gnome-da-capplet.c (main): Fix to use gtk_init_with_args() correctly. + svn path=/trunk/; revision=9103
This commit is contained in:
parent
1c2c68aa78
commit
621d9dcc44
2 changed files with 10 additions and 5 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Fri Oct 24 17:54:17 2008 Søren Sandmann <sandmann@redhat.com>
|
||||||
|
|
||||||
|
* gnome-da-capplet.c (main): Fix to use gtk_init_with_args() correctly.
|
||||||
|
|
||||||
Fri Oct 24 17:31:40 2008 Søren Sandmann <sandmann@redhat.com>
|
Fri Oct 24 17:31:40 2008 Søren Sandmann <sandmann@redhat.com>
|
||||||
|
|
||||||
* gnome-da-capplet.c (main): Replace use of gnome_program_init()
|
* gnome-da-capplet.c (main): Replace use of gnome_program_init()
|
||||||
|
|
|
@ -867,7 +867,7 @@ main (int argc, char **argv)
|
||||||
GnomeDACapplet *capplet;
|
GnomeDACapplet *capplet;
|
||||||
|
|
||||||
gchar *start_page = NULL;
|
gchar *start_page = NULL;
|
||||||
GOptionContext *option_context;
|
GError *err = NULL;
|
||||||
GOptionEntry option_entries[] = {
|
GOptionEntry option_entries[] = {
|
||||||
{ "show-page",
|
{ "show-page",
|
||||||
'p',
|
'p',
|
||||||
|
@ -886,10 +886,11 @@ main (int argc, char **argv)
|
||||||
textdomain (GETTEXT_PACKAGE);
|
textdomain (GETTEXT_PACKAGE);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
option_context = g_option_context_new (NULL);
|
if (!gtk_init_with_args (&argc, &argv, "- GNOME Default Applications",
|
||||||
g_option_context_add_main_entries (option_context, option_entries, GETTEXT_PACKAGE);
|
option_entries, GETTEXT_PACKAGE, &err)) {
|
||||||
|
g_printerr ("%s\n", err->message);
|
||||||
gtk_init_with_args (&argc, &argv, NULL, option_entries, NULL, NULL);
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
glade_init ();
|
glade_init ();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue