diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/component-factory.c | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index b6638c3e51..e526ce6f01 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2003-04-02 Not Zed <NotZed@Ximian.com> + + * component-factory.c (interactive_cb): Call + composer_check_autosave if we're going interactive, to check for + unsaved files. Fixes #40300. + 2003-04-01 Not Zed <NotZed@Ximian.com> * mail-display.c (mail_display_redisplay): if we're called and the diff --git a/mail/component-factory.c b/mail/component-factory.c index e7e25493c0..66586893b6 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -849,6 +849,10 @@ interactive_cb (EvolutionShellComponent *shell_component, gboolean on, gulong new_view_xid, gpointer user_data) { mail_session_set_interactive (on); + + if (on) + /* how do we get the parent window? */ + e_msg_composer_check_autosave(NULL); } static void |