diff options
author | Parthasarathi Susarla <sparthasarathi@novell.com> | 2006-01-04 02:42:21 +0800 |
---|---|---|
committer | Parthasarathi Susarla <saps@src.gnome.org> | 2006-01-04 02:42:21 +0800 |
commit | 08642cd462600ba6113bb00443a67d0b45462f49 (patch) | |
tree | 4322dd7824980ec248e1a7fd07288abf33b9c01a | |
parent | 31611aad52d469804801a624e79e52721b77360f (diff) | |
download | gsoc2013-evolution-08642cd462600ba6113bb00443a67d0b45462f49.tar.gz gsoc2013-evolution-08642cd462600ba6113bb00443a67d0b45462f49.tar.zst gsoc2013-evolution-08642cd462600ba6113bb00443a67d0b45462f49.zip |
Use the composer window as the parent window while showing the error
2006-01-04 Parthasarathi Susarla <sparthasarathi@novell.com>
* em-composer-utils.c:
(em_utils_composer_send_cb): Use the composer window as the
parent window while showing the error message.
svn path=/trunk/; revision=31041
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/em-composer-utils.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index fc39affb51..0100547391 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2006-01-04 Parthasarathi Susarla <sparthasarathi@novell.com> + + * em-composer-utils.c: + (em_utils_composer_send_cb): Use the composer window as the + parent window while showing the error message. + 2006-01-02 Shreyas Srinivasan <sshreyas@novell.com> * mail.error.xml: Fix 313095, Add error identifier diff --git a/mail/em-composer-utils.c b/mail/em-composer-utils.c index b0eac88d5e..a17d0f166b 100644 --- a/mail/em-composer-utils.c +++ b/mail/em-composer-utils.c @@ -385,7 +385,7 @@ em_utils_composer_send_cb (EMsgComposer *composer, gpointer user_data) account = e_msg_composer_get_preferred_account (composer); if (!account->enabled) { - e_error_run(NULL, "mail:send-no-account-enabled", NULL); + e_error_run((GtkWindow *)composer, "mail:send-no-account-enabled", NULL); return; } |