Fix option parsing so that -a and --action work correctly.

2008-10-13  Cody Russell <cody@jhu.edu>

        * test/testfilechooser.c: Fix option parsing so that -a and
        --action work correctly.


svn path=/trunk/; revision=21645
This commit is contained in:
Cody Russell 2008-10-13 15:15:23 +00:00 committed by Cody Russell
parent e74968f8ef
commit 9e3de2fe7f
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-10-13 Cody Russell <cody@jhu.edu>
* test/testfilechooser.c: Fix option parsing so that -a and
--action work correctly.
2008-10-13 Christian Persch <chpe@gnome.org>
Bug 555386 format not a string literal and no format arguments

View File

@ -491,7 +491,7 @@ main (int argc, char **argv)
char *backend = NULL;
GError *error = NULL;
GOptionEntry options[] = {
{ "action", 'a', 0, G_OPTION_ARG_STRING, &action, "Filechooser action", "ACTION" },
{ "action", 'a', 0, G_OPTION_ARG_STRING, &action_arg, "Filechooser action", "ACTION" },
{ "backend", 'b', 0, G_OPTION_ARG_STRING, &backend, "Filechooser backend (default: gtk+)", "BACKEND" },
{ "multiple", 'm', 0, G_OPTION_ARG_NONE, &multiple, "Select-multiple", NULL },
{ "right-to-left", 'r', 0, G_OPTION_ARG_NONE, &force_rtl, "Force right-to-left layout.", NULL },