diff options
author | Frédéric Crozat <fcrozat@src.gnome.org> | 2004-08-25 19:02:16 +0800 |
---|---|---|
committer | Frédéric Crozat <fcrozat@src.gnome.org> | 2004-08-25 19:02:16 +0800 |
commit | 124d3c27c27e5ec773972b2b5a88ce645e403531 (patch) | |
tree | 8c73d2d9dbdfc1e9602195ec28b9f01526ddd713 /shell/e-shell-startup-wizard.c | |
parent | 9a60859203bc5ce6fd7bf8f7a5a1d1461cf4c724 (diff) | |
download | gsoc2013-evolution-124d3c27c27e5ec773972b2b5a88ce645e403531.tar.gz gsoc2013-evolution-124d3c27c27e5ec773972b2b5a88ce645e403531.tar.zst gsoc2013-evolution-124d3c27c27e5ec773972b2b5a88ce645e403531.zip |
don't call gtk_dialog_set_has_separator on Message Dialog on GTK+ >= 2.4.0
* e-shell-startup-wizard.c: (prepare_importer_page):
don't call gtk_dialog_set_has_separator
on Message Dialog on GTK+ >= 2.4.0 (output warning)
* e-shell-importer.c: (e_shell_importer_start_import):
Initialize data->finish before using it
(prepare_intelligent_page): don't call gtk_dialog_set_has_separator
on Message Dialog on GTK+ >= 2.4.0 (output warning)
(start_import) (next_file_page): convert filename from UTF-8 to
local encoding.
svn path=/trunk/; revision=27020
Diffstat (limited to 'shell/e-shell-startup-wizard.c')
-rw-r--r-- | shell/e-shell-startup-wizard.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/e-shell-startup-wizard.c b/shell/e-shell-startup-wizard.c index 56cfbe9c1c..eddaacb79d 100644 --- a/shell/e-shell-startup-wizard.c +++ b/shell/e-shell-startup-wizard.c @@ -569,7 +569,9 @@ prepare_importer_page (GnomeDruidPage *page, dialog = gtk_message_dialog_new (NULL, 0, GTK_MESSAGE_INFO, GTK_BUTTONS_NONE, _("Please wait...\nScanning for existing setups")); +#if !GTK_CHECK_VERSION (2,4,0) gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE); +#endif e_make_widget_backing_stored (dialog); gtk_window_set_title (GTK_WINDOW (dialog), _("Starting import")); |