Fix an oversight
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2005-12-10 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gdk/gdk.c (gdk_parse_args): Warn if parsing fails,
|
||||||
|
not if it succeeds.
|
||||||
|
|
||||||
2005-12-09 Matthias Clasen <mclasen@redhat.com>
|
2005-12-09 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* gtk/gtkselection.c (gtk_selection_data_get_uris): Don't
|
* gtk/gtkselection.c (gtk_selection_data_get_uris): Don't
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2005-12-10 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gdk/gdk.c (gdk_parse_args): Warn if parsing fails,
|
||||||
|
not if it succeeds.
|
||||||
|
|
||||||
2005-12-09 Matthias Clasen <mclasen@redhat.com>
|
2005-12-09 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* gtk/gtkselection.c (gtk_selection_data_get_uris): Don't
|
* gtk/gtkselection.c (gtk_selection_data_get_uris): Don't
|
||||||
|
@ -217,7 +217,7 @@ gdk_parse_args (int *argc,
|
|||||||
g_option_group_add_entries (option_group, gdk_args);
|
g_option_group_add_entries (option_group, gdk_args);
|
||||||
g_option_group_add_entries (option_group, _gdk_windowing_args);
|
g_option_group_add_entries (option_group, _gdk_windowing_args);
|
||||||
|
|
||||||
if (g_option_context_parse (option_context, argc, argv, &error))
|
if (!g_option_context_parse (option_context, argc, argv, &error))
|
||||||
{
|
{
|
||||||
g_warning ("%s", error->message);
|
g_warning ("%s", error->message);
|
||||||
g_error_free (error);
|
g_error_free (error);
|
||||||
|
Reference in New Issue
Block a user