diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-07-08 20:01:12 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-07-08 20:01:12 +0800 |
commit | f1b8cb078f610e99084a62a6dbcdd63c6e4967b9 (patch) | |
tree | bbfa17bfe463d81ff6c1af7fefedaa9f4c1e16f0 /composer/e-msg-composer.c | |
parent | b87e03a1bab02a5bafb73ae9b38fcd4cce46c142 (diff) | |
download | gsoc2013-evolution-f1b8cb078f610e99084a62a6dbcdd63c6e4967b9.tar gsoc2013-evolution-f1b8cb078f610e99084a62a6dbcdd63c6e4967b9.tar.gz gsoc2013-evolution-f1b8cb078f610e99084a62a6dbcdd63c6e4967b9.tar.bz2 gsoc2013-evolution-f1b8cb078f610e99084a62a6dbcdd63c6e4967b9.tar.lz gsoc2013-evolution-f1b8cb078f610e99084a62a6dbcdd63c6e4967b9.tar.xz gsoc2013-evolution-f1b8cb078f610e99084a62a6dbcdd63c6e4967b9.tar.zst gsoc2013-evolution-f1b8cb078f610e99084a62a6dbcdd63c6e4967b9.zip |
Added code for initializing the values of the fields in the message
composer. Unfortunately the ESelectNames crashes when you do this...
svn path=/trunk/; revision=3975
Diffstat (limited to 'composer/e-msg-composer.c')
-rw-r--r-- | composer/e-msg-composer.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c index 06363a0eb5..6c4ea73270 100644 --- a/composer/e-msg-composer.c +++ b/composer/e-msg-composer.c @@ -745,11 +745,13 @@ create_menubar (EMsgComposer *composer) static GnomeUIInfo toolbar_info[] = { GNOMEUIINFO_ITEM_STOCK (N_("Send"), N_("Send this message"), send_cb, GNOME_STOCK_PIXMAP_MAIL_SND), +#if 0 GNOMEUIINFO_SEPARATOR, GNOMEUIINFO_ITEM_STOCK (N_("Cut"), N_("Cut selected region into the clipboard"), NULL, GNOME_STOCK_PIXMAP_CUT), GNOMEUIINFO_ITEM_STOCK (N_("Copy"), N_("Copy selected region into the clipboard"), NULL, GNOME_STOCK_PIXMAP_COPY), GNOMEUIINFO_ITEM_STOCK (N_("Paste"), N_("Paste selected region into the clipboard"), NULL, GNOME_STOCK_PIXMAP_PASTE), GNOMEUIINFO_ITEM_STOCK (N_("Undo"), N_("Undo last operation"), NULL, GNOME_STOCK_PIXMAP_UNDO), +#endif GNOMEUIINFO_SEPARATOR, GNOMEUIINFO_ITEM_STOCK (N_("Attach"), N_("Attach a file"), add_attachment_cb, GNOME_STOCK_PIXMAP_ATTACH), GNOMEUIINFO_END |