diff options
author | Lucas Rocha <lucasr@cvs.gnome.org> | 2005-09-24 15:04:02 +0000 |
---|---|---|
committer | Lucas Almeida Rocha <lucasr@src.gnome.org> | 2005-09-24 15:04:02 +0000 |
commit | 0086a9363f9c94f19d6d5ad2424680fcac0e7a7a (patch) | |
tree | 2f2e2f5b30614a5c08424a5ff71cdd16db20168b | |
parent | escaped "-"s; they're supposed to be minus signs, not hyphens. (diff) | |
download | zenity-0086a9363f9c94f19d6d5ad2424680fcac0e7a7a.tar.gz zenity-0086a9363f9c94f19d6d5ad2424680fcac0e7a7a.tar.bz2 zenity-0086a9363f9c94f19d6d5ad2424680fcac0e7a7a.zip |
fixed bug #317033.
2005-09-24 Lucas Rocha <lucasr@cvs.gnome.org>
* src/option.c: fixed bug #317033.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | src/option.c | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2005-09-24 Lucas Rocha <lucasr@cvs.gnome.org> + + * src/option.c: fixed bug #317033. + 2005-09-21 Guilherme de S. Pastore <gpastore@cvs.gnome.org> * data/zenity.1: escaped "-"s; they're supposed to be diff --git a/src/option.c b/src/option.c index c8640f3f..19089305 100644 --- a/src/option.c +++ b/src/option.c @@ -211,7 +211,7 @@ static GOptionEntry entry_options[] = { "text", '\0', G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_STRING, + G_OPTION_ARG_STRING | G_OPTION_FLAG_NOALIAS, &zenity_general_dialog_text, N_("Set the dialog text"), NULL @@ -220,7 +220,7 @@ static GOptionEntry entry_options[] = { "entry-text", '\0', 0, - G_OPTION_ARG_STRING | G_OPTION_FLAG_NOALIAS, + G_OPTION_ARG_STRING, &zenity_entry_entry_text, N_("Set the entry text"), NULL |