diff options
author | Michael Meeks <michael.meeks@novell.com> | 2010-03-24 17:56:20 +0800 |
---|---|---|
committer | Michael Meeks <michael.meeks@novell.com> | 2010-03-24 17:56:20 +0800 |
commit | 077c7326355dd2881e3a4686ccdf4c2a7446df4f (patch) | |
tree | 9c078555394d710e44605524d8492606f6eced2d /plugins | |
parent | 214456fd1524029de814281270c46106ff9aa883 (diff) | |
download | gsoc2013-evolution-077c7326355dd2881e3a4686ccdf4c2a7446df4f.tar.gz gsoc2013-evolution-077c7326355dd2881e3a4686ccdf4c2a7446df4f.tar.zst gsoc2013-evolution-077c7326355dd2881e3a4686ccdf4c2a7446df4f.zip |
Alter UI conditional syntax to be more familiar cpp style, which
avoids the need for intltool changes.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mail-to-task/org-gnome-mail-to-task.eplug.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/mail-to-task/org-gnome-mail-to-task.eplug.xml b/plugins/mail-to-task/org-gnome-mail-to-task.eplug.xml index 9cb3909f7a..d904d295d6 100644 --- a/plugins/mail-to-task/org-gnome-mail-to-task.eplug.xml +++ b/plugins/mail-to-task/org-gnome-mail-to-task.eplug.xml @@ -7,7 +7,7 @@ <hook class="org.gnome.evolution.ui:1.0"> <ui-manager id="org.gnome.evolution.mail.browser" callback="mail_browser_init"> -<!-- if !EXPRESS --> +#if !EXPRESS <menubar name='main-menu'> <placeholder name='custom-menus'> <menu action="mail-message-menu"> @@ -28,11 +28,11 @@ <menuitem action="mail-convert-to-memo"/> </placeholder> </popup> -<!-- endif --> +#endif </ui-manager> <ui-manager id="org.gnome.evolution.mail" callback="mail_shell_view_init"> -<!-- if !EXPRESS --> +#if !EXPRESS <menubar name='main-menu'> <placeholder name='custom-menus'> <menu action="mail-message-menu"> @@ -46,7 +46,7 @@ </placeholder> </menubar> <popup name="mail-message-popup"> - <placeholder name="mail-message-popup-actions"> + <placeholder name="mail-message-popup-actions"> <menuitem action="mail-convert-to-event"/> <menuitem action="mail-convert-to-meeting"/> <menuitem action="mail-convert-to-task"/> @@ -61,8 +61,8 @@ <menuitem action="mail-convert-to-memo"/> </placeholder> </popup> -<!-- endif --> </ui-manager> +#endif </hook> </e-plugin> |