diff options
author | Suman Manjunath <msuman@src.gnome.org> | 2008-08-04 11:40:06 +0800 |
---|---|---|
committer | Suman Manjunath <msuman@src.gnome.org> | 2008-08-04 11:40:06 +0800 |
commit | 6dd3a55a40a84a8666069d5122f715f93fc03251 (patch) | |
tree | a57c96ddfdd9a7a59a8cf0ba0f681efaffc947e9 /shell | |
parent | 6f78aa98cadc062f64d738554e7a791f07d8ca5f (diff) | |
download | gsoc2013-evolution-6dd3a55a40a84a8666069d5122f715f93fc03251.tar.gz gsoc2013-evolution-6dd3a55a40a84a8666069d5122f715f93fc03251.tar.zst gsoc2013-evolution-6dd3a55a40a84a8666069d5122f715f93fc03251.zip |
Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #249844 (Use C_() macro instead of Q_() macro, Use fully qualified names for New submenu entries).
svn path=/trunk/; revision=35897
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 8 | ||||
-rw-r--r-- | shell/test/evolution-test-component.c | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 47d6b785e9..6f12b5bd4b 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,11 @@ +2008-08-04 Matthew Barnes <mbarnes@redhat.com> + + ** Fixes bug #249844 + + * test/evolution-test-component.c (impl__get_userCreatableItems): + Use C_() macro instead of Q_() macro. + Use fully qualified names for "New" submenu entries. + 2008-08-01 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #544862 diff --git a/shell/test/evolution-test-component.c b/shell/test/evolution-test-component.c index 3f2b39278c..1ce8006ea5 100644 --- a/shell/test/evolution-test-component.c +++ b/shell/test/evolution-test-component.c @@ -105,7 +105,7 @@ impl__get_userCreatableItems (PortableServer_Servant servant, list->_buffer[0].id = CREATE_TEST_ID; list->_buffer[0].description = _("New Test"); - list->_buffer[0].menuDescription = _("_Test"); + list->_buffer[0].menuDescription = C_("New", "_Test"); list->_buffer[0].tooltip = _("Create a new test item"); list->_buffer[0].menuShortcut = 'i'; list->_buffer[0].iconName = ""; |