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);