diff options
author | Frédéric Crozat <fcrozat@src.gnome.org> | 2004-08-25 18:57:59 +0800 |
---|---|---|
committer | Frédéric Crozat <fcrozat@src.gnome.org> | 2004-08-25 18:57:59 +0800 |
commit | c1ad0cb19be5fef872aa656104f9f3391ccc7b0f (patch) | |
tree | 9de51b4a76bc09188255d3ca61fd2e922831a0e3 /calendar | |
parent | b96d53711c011f571fdf3263fa1db65c85cd0977 (diff) | |
download | gsoc2013-evolution-c1ad0cb19be5fef872aa656104f9f3391ccc7b0f.tar.gz gsoc2013-evolution-c1ad0cb19be5fef872aa656104f9f3391ccc7b0f.tar.zst gsoc2013-evolution-c1ad0cb19be5fef872aa656104f9f3391ccc7b0f.zip |
Don't call gtk_dialog_set_has_separator on Gtk Message Dialog
* gui/dialogs/recur-comp.c: (recur_component_dialog):
Don't call gtk_dialog_set_has_separator on Gtk Message Dialog
svn path=/trunk/; revision=27017
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/dialogs/recur-comp.c | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index b02177815e..a2f8310211 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,9 @@ +2004-08-25 Frederic Crozat <fcrozat@mandrakesoft.com> + + * gui/dialogs/recur-comp.c: (recur_component_dialog): + Don't call gtk_dialog_set_has_separator on Gtk Message Dialog + with GTK+ >= 2.4.0. + 2004-08-25 Chenthill Palanisamy <pchenthill@novell.com> * gui/e-tasks.c diff --git a/calendar/gui/dialogs/recur-comp.c b/calendar/gui/dialogs/recur-comp.c index bd0d7a1080..1f5c2b39e9 100644 --- a/calendar/gui/dialogs/recur-comp.c +++ b/calendar/gui/dialogs/recur-comp.c @@ -67,7 +67,9 @@ recur_component_dialog (ECal *client, dialog = gtk_message_dialog_new (parent, 0, GTK_MESSAGE_QUESTION, GTK_BUTTONS_OK_CANCEL, "%s", str); g_free (str); +#if !GTK_CHECK_VERSION (2,4,0) gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE); +#endif gtk_window_set_resizable (GTK_WINDOW (dialog), TRUE); hbox = gtk_hbox_new (FALSE, 12); |