diff options
author | Gediminas Paulauskas <menesis@delfi.lt> | 2001-05-12 18:02:29 +0800 |
---|---|---|
committer | Gediminas Paulauskas <menesis@src.gnome.org> | 2001-05-12 18:02:29 +0800 |
commit | 9a9a51c562d402f2324e662125859d7b23410784 (patch) | |
tree | 4e2b9ed44e360c8ffc550a11e307aeae397ff099 /mail | |
parent | 2424c155946bcc29cd1265b85a7c59b3938adf3c (diff) | |
download | gsoc2013-evolution-9a9a51c562d402f2324e662125859d7b23410784.tar gsoc2013-evolution-9a9a51c562d402f2324e662125859d7b23410784.tar.gz gsoc2013-evolution-9a9a51c562d402f2324e662125859d7b23410784.tar.bz2 gsoc2013-evolution-9a9a51c562d402f2324e662125859d7b23410784.tar.lz gsoc2013-evolution-9a9a51c562d402f2324e662125859d7b23410784.tar.xz gsoc2013-evolution-9a9a51c562d402f2324e662125859d7b23410784.tar.zst gsoc2013-evolution-9a9a51c562d402f2324e662125859d7b23410784.zip |
my computer crashed while commiting this first time.
2001-05-12 Gediminas Paulauskas <menesis@delfi.lt>
* folder-browser-factory.c: load pixmaps for MessageCopy and
MessageForwardAttached. Thanks Wayne Davis <wfdavis@seas.upenn.edu>
for a patch.
2001-05-12 Gediminas Paulauskas <menesis@delfi.lt>
* evolution-mail.xml: add pixmaps for MessageCopy and
MessageForwardAttached. Thanks Wayne Davis <wfdavis@seas.upenn.edu>
for a patch.
2001-05-12 Gediminas Paulauskas <menesis@delfi.lt>
* po/POTFILES.in: update with new/moved files.
also:
Removed duplicated DATADIR in mail/Makefile.am
fixed warning in e-search-bar.c in my recent code there
svn path=/trunk/; revision=9783
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/Makefile.am | 1 | ||||
-rw-r--r-- | mail/folder-browser-factory.c | 2 |
3 files changed, 8 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 672cec0df7..1ffe5dceb0 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2001-05-12 Gediminas Paulauskas <menesis@delfi.lt> + + * folder-browser-factory.c: load pixmaps for MessageCopy and + MessageForwardAttached. Thanks Wayne Davis <wfdavis@seas.upenn.edu> + for a patch. + 2001-05-11 Dan Winship <danw@ximian.com> * mail-display.c (load_http): callback to use GNOME-VFS to load diff --git a/mail/Makefile.am b/mail/Makefile.am index 2b66e3573c..d39fca9307 100644 --- a/mail/Makefile.am +++ b/mail/Makefile.am @@ -30,7 +30,6 @@ INCLUDES = \ -DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \ -DEVOLUTION_ICONSDIR=\""$(iconsdir)"\" \ -DEVOLUTION_LOCALEDIR=\""$(localedir)"\" \ - -DEVOLUTION_DATADIR=\""$(datadir)"\" \ -DCAMEL_PROVIDERDIR=\""$(providerdir)"\" \ -DMAIL_IMPORTERSDIR=\""$(importerdir)"\" \ -DG_LOG_DOMAIN=\"evolution-mail\" diff --git a/mail/folder-browser-factory.c b/mail/folder-browser-factory.c index e26e3595ea..ac0970319b 100644 --- a/mail/folder-browser-factory.c +++ b/mail/folder-browser-factory.c @@ -132,9 +132,11 @@ static EPixmap pixcache [] = { E_PIXMAP ("/menu/View/MessageHideClear", "show_all_messages.xpm"), E_PIXMAP ("/menu/Actions/Component/SendReceive", "send-receive.xpm"), + E_PIXMAP ("/menu/Actions/Component/MessageCopy", "copy_16_message.xpm"), E_PIXMAP ("/menu/Actions/Component/MessageMove", "move_message.xpm"), E_PIXMAP ("/menu/Actions/Component/MessageReplyAll", "reply_to_all.xpm"), E_PIXMAP ("/menu/Actions/Component/MessageReplySender", "reply.xpm"), + E_PIXMAP ("/menu/Actions/Component/MessageForwardAttached", "forward.xpm"), E_PIXMAP ("/menu/Tools/Component/SetMailConfig", "configure_16_mail.xpm"), |