summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@ximian.com>2002-08-01 02:12:51 +0000
committerFederico Mena Quintero <federico@src.gnome.org>2002-08-01 02:12:51 +0000
commit193f017be85718c76ab5a5705a05999a79c84630 (patch)
treeec2df11fc397922a82a3b8c56e96e8c61074f088
parent69883510ea011f1640951557271ca64a55ac4476 (diff)
downloadgnome-control-center-193f017be85718c76ab5a5705a05999a79c84630.tar.gz
Do not pass -1 for the dialog flags; just pass GTK_DIALOG_NO_SEPARATOR.
2002-07-31 Federico Mena Quintero <federico@ximian.com> * sound-properties-capplet.c (main): Do not pass -1 for the dialog flags; just pass GTK_DIALOG_NO_SEPARATOR. Fixes #89408 and #88614.
-rw-r--r--capplets/sound/ChangeLog5
-rw-r--r--capplets/sound/sound-properties-capplet.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/capplets/sound/ChangeLog b/capplets/sound/ChangeLog
index 48450a754..b881cb141 100644
--- a/capplets/sound/ChangeLog
+++ b/capplets/sound/ChangeLog
@@ -1,3 +1,8 @@
+2002-07-31 Federico Mena Quintero <federico@ximian.com>
+
+ * sound-properties-capplet.c (main): Do not pass -1 for the dialog
+ flags; just pass GTK_DIALOG_NO_SEPARATOR. Fixes #89408 and #88614.
+
2002-06-17 Jody Goldberg <jody@gnome.org>
* Release 2.0.0
diff --git a/capplets/sound/sound-properties-capplet.c b/capplets/sound/sound-properties-capplet.c
index 8f7cbeab4..32e3ef4c0 100644
--- a/capplets/sound/sound-properties-capplet.c
+++ b/capplets/sound/sound-properties-capplet.c
@@ -177,7 +177,7 @@ main (int argc, char **argv)
#endif
dialog_win = gtk_dialog_new_with_buttons
- (_("Sound preferences"), NULL, -1,
+ (_("Sound preferences"), NULL, GTK_DIALOG_NO_SEPARATOR,
GTK_STOCK_HELP, GTK_RESPONSE_HELP,
GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE,
NULL);