diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/main.c | 4 |
2 files changed, 9 insertions, 0 deletions
@@ -1,5 +1,10 @@ 2003-01-29 Glynn Foster <glynn.foster@sun.com> + * src/main.c: Don't do a g_assert_not_reached () if we don't have + any dialog types. + +2003-01-29 Glynn Foster <glynn.foster@sun.com> + * README: Update * configure.in: Remove some bogus configure checks that @@ -1020,6 +1020,10 @@ main (gint argc, gchar **argv) { case MODE_ABOUT: zenity_about (results->data); break; + case MODE_LAST: + g_printerr (_("You must specify a dialog type. See 'zenity --help' for details\n")); + zenity_free_parsing_options (); + exit (-1); default: g_assert_not_reached (); zenity_free_parsing_options (); |