diff options
author | Larry Ewing <lewing@ximian.com> | 2001-10-30 07:30:25 +0800 |
---|---|---|
committer | Larry Ewing <lewing@src.gnome.org> | 2001-10-30 07:30:25 +0800 |
commit | 80fffd093013bd250c98e1a05591de1a0b029f5a (patch) | |
tree | e9345a3e89c55afe88da4c084760a4c1728746ab /composer/e-msg-composer.h | |
parent | 921c64fb60dfb696590d45f2521a041213a91b0a (diff) | |
download | gsoc2013-evolution-80fffd093013bd250c98e1a05591de1a0b029f5a.tar.gz gsoc2013-evolution-80fffd093013bd250c98e1a05591de1a0b029f5a.tar.zst gsoc2013-evolution-80fffd093013bd250c98e1a05591de1a0b029f5a.zip |
add GList to hold the current images.
2001-10-29 Larry Ewing <lewing@ximian.com>
* e-msg-composer.h: add GList to hold the current images.
* listener.c (resolve_image_url): keep track of the images that
the editor is currently uses in current_images as well as storing
the images in the hash.
* e-msg-composer.c (clear_current_images): clear the list of
images actually in the message.
(add_inlined_images): use the current image list rather than the
hash tables.
(build_message): clear the current image list when appropriate.
(init): initialize current_images.
svn path=/trunk/; revision=14379
Diffstat (limited to 'composer/e-msg-composer.h')
-rw-r--r-- | composer/e-msg-composer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/composer/e-msg-composer.h b/composer/e-msg-composer.h index 7467e9457e..941834d120 100644 --- a/composer/e-msg-composer.h +++ b/composer/e-msg-composer.h @@ -71,6 +71,7 @@ struct _EMsgComposer { GNOME_GtkHTML_Editor_Engine editor_engine; BonoboObject *editor_listener; GHashTable *inline_images, *inline_images_by_url; + GList *current_images; Bonobo_ConfigDatabase config_db; |