aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-component.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2004-04-09 23:47:38 +0800
committerDan Winship <danw@src.gnome.org>2004-04-09 23:47:38 +0800
commitd084ec18e84d91c36dc68d4c336511577d816a7a (patch)
treec7d54a9e925111ed5fbcbc503e71dc4470b7adc7 /mail/mail-component.c
parent7f2badb024128819fbb1d2656057c5e476100cd8 (diff)
downloadgsoc2013-evolution-d084ec18e84d91c36dc68d4c336511577d816a7a.tar
gsoc2013-evolution-d084ec18e84d91c36dc68d4c336511577d816a7a.tar.gz
gsoc2013-evolution-d084ec18e84d91c36dc68d4c336511577d816a7a.tar.bz2
gsoc2013-evolution-d084ec18e84d91c36dc68d4c336511577d816a7a.tar.lz
gsoc2013-evolution-d084ec18e84d91c36dc68d4c336511577d816a7a.tar.xz
gsoc2013-evolution-d084ec18e84d91c36dc68d4c336511577d816a7a.tar.zst
gsoc2013-evolution-d084ec18e84d91c36dc68d4c336511577d816a7a.zip
Create an EUserCreatableItemsHandler for the view. (emfv_finalise): Unref
* em-folder-view.c (emfv_init): Create an EUserCreatableItemsHandler for the view. (emfv_finalise): Unref it. (emfv_activate): Activate it * mail-component.c (impl__get_userCreatableItems): add object/folder flags to the items svn path=/trunk/; revision=25380
Diffstat (limited to 'mail/mail-component.c')
-rw-r--r--mail/mail-component.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/mail/mail-component.c b/mail/mail-component.c
index ee1bfccc74..58648a9cbd 100644
--- a/mail/mail-component.c
+++ b/mail/mail-component.c
@@ -622,6 +622,7 @@ impl__get_userCreatableItems (PortableServer_Servant servant, CORBA_Environment
list->_buffer[0].tooltip = _("Compose a new mail message");
list->_buffer[0].menuShortcut = 'm';
list->_buffer[0].iconName = "new-message.xpm";
+ list->_buffer[0].type = GNOME_Evolution_CREATABLE_OBJECT;
list->_buffer[1].id = "folder";
list->_buffer[1].description = _("New Mail Folder");
@@ -629,6 +630,7 @@ impl__get_userCreatableItems (PortableServer_Servant servant, CORBA_Environment
list->_buffer[1].tooltip = _("Create a new mail folder");
list->_buffer[1].menuShortcut = 'f';
list->_buffer[1].iconName = "folder-mini.png";
+ list->_buffer[1].type = GNOME_Evolution_CREATABLE_FOLDER;
return list;
}