From 331fe02266408da756dcde94702a23c2bee5162a Mon Sep 17 00:00:00 2001 From: Rodney Dawes Date: Wed, 31 Mar 2004 17:05:52 +0000 Subject: Remove dialog separators Change the border with of the dialog's vbox and 2004-03-31 Rodney Dawes * e-shell-importer.c (choose_importer_from_list): (start_import): (prepare_intelligent_page): Remove dialog separators * e-shell-offline-handler.c (pop_up_confirmation_dialog): Change the border with of the dialog's vbox and action area to be HIG-compliant * e-shell-settings-dialog.c (init): Remove the dialog separator * e-shell-startup-wizard.c (prepare_importer_page): Remove the dialog separator to be more HIG-compliant (key_press_event_callback): Fix compile warnings and cast to the correct widget types for calling various gtk api Remove the dialog separator to be more HIG-compliant * main.c (show_development_warning): Make the devel warning dialog that pops up for unstable versions be HIG-compliant * glade/e-active-connection-dialog.glade: Make the active connection dialog for going off-line be HIG-compliant * importer/intelligent.c (create_gui): Remove the dialog separator and set the dialog's vbox and action area border widths to be more compliant with the HIG svn path=/trunk/; revision=25267 --- shell/importer/intelligent.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'shell/importer') diff --git a/shell/importer/intelligent.c b/shell/importer/intelligent.c index 7a91e4fc04..16cfad30ff 100644 --- a/shell/importer/intelligent.c +++ b/shell/importer/intelligent.c @@ -186,6 +186,10 @@ create_gui (GList *importers) d = g_new (IntelligentImporterDialog, 1); d->dialog = dialog = gtk_dialog_new(); + gtk_dialog_set_has_separator ((GtkDialog *) dialog, FALSE); + gtk_container_set_border_width ((GtkContainer *) ((GtkDialog *)dialog)->vbox, 0); + gtk_container_set_border_width ((GtkContainer *) ((GtkDialog *)dialog)->action_area, 12); + gtk_window_set_title((GtkWindow *)dialog, _("Importers")); dummy = gtk_button_new_from_stock(GTK_STOCK_CONVERT); gtk_button_set_label((GtkButton *)dummy, _("Import")); -- cgit v1.2.3