Don't ignore errors from g_option_context_parse().
2005-12-06 Matthias Clasen <mclasen@redhat.com> * gdk/gdk.c (gdk_parse_args): * gtk/gtkmain.c (gtk_parse_args): Don't ignore errors from g_option_context_parse().
This commit is contained in:
committed by
Matthias Clasen
parent
b7b750b05b
commit
3584677939
@@ -1,5 +1,9 @@
|
||||
2005-12-06 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gdk/gdk.c (gdk_parse_args):
|
||||
* gtk/gtkmain.c (gtk_parse_args): Don't ignore errors
|
||||
from g_option_context_parse().
|
||||
|
||||
Make it compile against GLib 2.9:
|
||||
|
||||
* gtk/gtkclist.h:
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
2005-12-06 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gdk/gdk.c (gdk_parse_args):
|
||||
* gtk/gtkmain.c (gtk_parse_args): Don't ignore errors
|
||||
from g_option_context_parse().
|
||||
|
||||
Make it compile against GLib 2.9:
|
||||
|
||||
* gtk/gtkclist.h:
|
||||
|
||||
@@ -200,6 +200,7 @@ gdk_parse_args (int *argc,
|
||||
{
|
||||
GOptionContext *option_context;
|
||||
GOptionGroup *option_group;
|
||||
GError *error = NULL;
|
||||
|
||||
if (gdk_initialized)
|
||||
return;
|
||||
@@ -215,7 +216,12 @@ gdk_parse_args (int *argc,
|
||||
g_option_group_add_entries (option_group, gdk_args);
|
||||
g_option_group_add_entries (option_group, _gdk_windowing_args);
|
||||
|
||||
g_option_context_parse (option_context, argc, argv, NULL);
|
||||
if (!g_option_context_parse (option_context, argc, argv, &error))
|
||||
{
|
||||
g_warning ("%s", error->message);
|
||||
g_error_free (error);
|
||||
}
|
||||
|
||||
g_option_context_free (option_context);
|
||||
|
||||
GDK_NOTE (MISC, g_message ("progname: \"%s\"", g_get_prgname ()));
|
||||
|
||||
@@ -675,6 +675,7 @@ gtk_parse_args (int *argc,
|
||||
{
|
||||
GOptionContext *option_context;
|
||||
GOptionGroup *gtk_group;
|
||||
GError *error = NULL;
|
||||
|
||||
if (gtk_initialized)
|
||||
return TRUE;
|
||||
@@ -689,7 +690,12 @@ gtk_parse_args (int *argc,
|
||||
g_option_context_set_help_enabled (option_context, FALSE);
|
||||
gtk_group = gtk_get_option_group (FALSE);
|
||||
g_option_context_set_main_group (option_context, gtk_group);
|
||||
g_option_context_parse (option_context, argc, argv, NULL);
|
||||
if (!g_option_context_parse (option_context, argc, argv, &error))
|
||||
{
|
||||
g_warning ("%s", error->message);
|
||||
g_error_free (error);
|
||||
}
|
||||
|
||||
g_option_context_free (option_context);
|
||||
|
||||
return TRUE;
|
||||
|
||||
Reference in New Issue
Block a user