diff options
author | Antonio Xu <antonio.xu@sun.com> | 2003-08-29 13:57:25 +0800 |
---|---|---|
committer | Antonio Xu <anto@src.gnome.org> | 2003-08-29 13:57:25 +0800 |
commit | 685a1ce3cee46e6a18603d651c57b9f9c98ecaef (patch) | |
tree | bd1be9c37ba4ccea524087d3887afcdad480ec3c /composer/e-msg-composer.c | |
parent | a243925d75d2b688fa2da33020f1495d2ad2cba9 (diff) | |
download | gsoc2013-evolution-685a1ce3cee46e6a18603d651c57b9f9c98ecaef.tar.gz gsoc2013-evolution-685a1ce3cee46e6a18603d651c57b9f9c98ecaef.tar.zst gsoc2013-evolution-685a1ce3cee46e6a18603d651c57b9f9c98ecaef.zip |
Connect response signal to attachment properties dialog, fix bug #47950.
2003-08-29 Antonio Xu <antonio.xu@sun.com>
* e-msg-composer-attachment.c (): Connect response signal to
attachment properties dialog, fix bug #47950.
* Makefile.am (INCLUDES): add EVOLUTION_IMAGESDIR define
* e-msg-composer.c (create_composer): use EVOLUTION_IMAGESDIR
and composer icon name to get the path of composer icon.
[#47781]
svn path=/trunk/; revision=22411
Diffstat (limited to 'composer/e-msg-composer.c')
-rw-r--r-- | composer/e-msg-composer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c index 5a78a68a02..c15dedd7df 100644 --- a/composer/e-msg-composer.c +++ b/composer/e-msg-composer.c @@ -2937,9 +2937,9 @@ create_composer (int visible_mask) gtk_window_set_default_size (GTK_WINDOW (composer), DEFAULT_WIDTH, DEFAULT_HEIGHT); - gnome_window_icon_set_from_file (GTK_WINDOW (composer), EVOLUTION_DATADIR - "/images/evolution/compose-message.png"); - + gnome_window_icon_set_from_file (GTK_WINDOW (composer), EVOLUTION_IMAGESDIR + "/compose-message.png"); + /* DND support */ gtk_drag_dest_set (GTK_WIDGET (composer), GTK_DEST_DEFAULT_ALL, drop_types, num_drop_types, GDK_ACTION_COPY); |