diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2001-01-09 04:05:56 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-01-09 04:05:56 +0800 |
commit | 51bd9ba1bb27bf599c373c77248f97eba3c5dd74 (patch) | |
tree | beab1e85d9dc1fdd671d30c4a93315491c4b422b /mail/mail-accounts.c | |
parent | 0dae964dba8d9f07bf46b36a55a52f685cbd8ff2 (diff) | |
download | gsoc2013-evolution-51bd9ba1bb27bf599c373c77248f97eba3c5dd74.tar.gz gsoc2013-evolution-51bd9ba1bb27bf599c373c77248f97eba3c5dd74.tar.zst gsoc2013-evolution-51bd9ba1bb27bf599c373c77248f97eba3c5dd74.zip |
A bunch of fixes.
2001-01-08 Jeffrey Stedfast <fejj@helixcode.com>
* mail-config-druid.c: A bunch of fixes.
* mail-accounts.c: More fixes...
* mail-account-editor.c (construct): Reparent the notebook to the
editor->vbox and set the resize policy.
svn path=/trunk/; revision=7301
Diffstat (limited to 'mail/mail-accounts.c')
-rw-r--r-- | mail/mail-accounts.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mail/mail-accounts.c b/mail/mail-accounts.c index 952342cfc1..6d6d9b9fce 100644 --- a/mail/mail-accounts.c +++ b/mail/mail-accounts.c @@ -326,11 +326,12 @@ construct (MailAccountsDialog *dialog) notebook = glade_xml_get_widget (gui, "notebook"); /* reparent */ - gtk_widget_reparent (notebook, GTK_WIDGET (dialog)); + gtk_widget_reparent (notebook, GNOME_DIALOG (dialog)->vbox); /* give our dialog an OK button and title */ - gnome_dialog_construct (GNOME_DIALOG (dialog), _("Evolution Accounts"), - GNOME_STOCK_BUTTON_OK); + gtk_window_set_title (GTK_WINDOW (dialog), _("Evolution Account Manager")); + gtk_window_set_policy (GTK_WINDOW (dialog), FALSE, TRUE, TRUE); + gnome_dialog_append_button (GNOME_DIALOG (dialog), GNOME_STOCK_BUTTON_OK); dialog->mail_accounts = GTK_CLIST (glade_xml_get_widget (gui, "clistAccounts")); gtk_signal_connect (GTK_OBJECT (dialog->mail_accounts), "select-row", |