diff options
author | Milan Crha <mcrha@redhat.com> | 2007-11-30 02:16:10 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2007-11-30 02:16:10 +0800 |
commit | 462fdd34535c090706e59ce3ffb4aa51bc29a034 (patch) | |
tree | f185944f5bcd1141178027dcbf82b2c1ab6f2329 /composer/e-msg-composer.h | |
parent | 4bca50f1c5060efbfe2f0c9d011e4d51f1e8be0f (diff) | |
download | gsoc2013-evolution-462fdd34535c090706e59ce3ffb4aa51bc29a034.tar.gz gsoc2013-evolution-462fdd34535c090706e59ce3ffb4aa51bc29a034.tar.zst gsoc2013-evolution-462fdd34535c090706e59ce3ffb4aa51bc29a034.zip |
** Part of fix for bug #271551
2007-11-29 Milan Crha <mcrha@redhat.com>
** Part of fix for bug #271551
* mail/evolution-mail.schemas.in:
New key "/apps/evolution/mail/composer/current_folder".
* composer/e-msg-composer.h: (e_msg_composer_set_attach_path),
(e_msg_composer_get_attach_path):
* composer/e-msg-composer.c: (e_msg_composer_set_attach_path),
(e_msg_composer_get_attach_path):
Functions to set/get attach path to both composer and editor.
* composer/e-msg-composer.c: (prepare_engine):
Set last used path right after creation of the engine.
* composer/e-msg-composer-select-file.c: (get_selector), (select_file_response),
(select_attach_response): Using new functions.
* composer/listener.c: (impl_event): Store new file path when received event
about its change.
* composer/e-msg-composer.c: (set_signature_gui): Leak fix.
Note: update your GtkHtml to revision 8636 and above.
svn path=/trunk/; revision=34613
Diffstat (limited to 'composer/e-msg-composer.h')
-rw-r--r-- | composer/e-msg-composer.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/composer/e-msg-composer.h b/composer/e-msg-composer.h index d285c0d6f1..19e84170e4 100644 --- a/composer/e-msg-composer.h +++ b/composer/e-msg-composer.h @@ -196,6 +196,10 @@ const gchar * e_msg_composer_get_raw_message_text (EMsgC struct _EAttachmentBar* e_msg_composer_get_attachment_bar (EMsgComposer *composer); +void e_msg_composer_set_attach_path (EMsgComposer *composer, const gchar *path); +const gchar * e_msg_composer_get_attach_path (EMsgComposer *composer); + + #ifdef __cplusplus } #endif /* __cplusplus */ |