From 193f017be85718c76ab5a5705a05999a79c84630 Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Thu, 1 Aug 2002 02:12:51 +0000 Subject: [PATCH] Do not pass -1 for the dialog flags; just pass GTK_DIALOG_NO_SEPARATOR. 2002-07-31 Federico Mena Quintero * sound-properties-capplet.c (main): Do not pass -1 for the dialog flags; just pass GTK_DIALOG_NO_SEPARATOR. Fixes #89408 and #88614. --- capplets/sound/ChangeLog | 5 +++++ capplets/sound/sound-properties-capplet.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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 + + * 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 * 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);