diff options
author | Milan Crha <mcrha@redhat.com> | 2011-01-28 00:39:36 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:41:29 +0800 |
commit | 0364d4192bde55cb2d834db4e8eab05aa8f7d389 (patch) | |
tree | 425828b94cd63a16133e9b14c485a321d5080a16 /mail/e-mail-session.c | |
parent | be51aeee182aa2892d46ebcc31bdad82a02387e9 (diff) | |
download | gsoc2013-evolution-0364d4192bde55cb2d834db4e8eab05aa8f7d389.tar.gz gsoc2013-evolution-0364d4192bde55cb2d834db4e8eab05aa8f7d389.tar.zst gsoc2013-evolution-0364d4192bde55cb2d834db4e8eab05aa8f7d389.zip |
Bug #640704 - Replace GtkWindow::allow_shrink/grow with resizable
Diffstat (limited to 'mail/e-mail-session.c')
-rw-r--r-- | mail/e-mail-session.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mail/e-mail-session.c b/mail/e-mail-session.c index 9f54f956ac..706fa2647e 100644 --- a/mail/e-mail-session.c +++ b/mail/e-mail-session.c @@ -200,9 +200,7 @@ user_message_exec (struct _user_message_msg *m, parent = e_shell_get_active_window (e_shell_get_default ()); user_message_dialog = e_alert_dialog_new_for_args ( parent, error_type, m->prompt, NULL); - g_object_set ( - user_message_dialog, "allow_shrink", TRUE, - "allow_grow", TRUE, NULL); + g_object_set (user_message_dialog, "resizable", TRUE, NULL); /* XXX This is a case where we need to be able to construct * custom EAlerts without a predefined XML definition. */ |