diff options
author | Milan Crha <mcrha@redhat.com> | 2008-08-06 23:44:47 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2008-08-06 23:44:47 +0800 |
commit | 670e6d167863d4c8d8dde107e7d8ac7a288e0b52 (patch) | |
tree | 01aa1c20effb5b36fa39c1ba37a63cec9aa84822 /shell | |
parent | 6bf36561f19fede5232329407dbdbd1dec82f33c (diff) | |
download | gsoc2013-evolution-670e6d167863d4c8d8dde107e7d8ac7a288e0b52.tar gsoc2013-evolution-670e6d167863d4c8d8dde107e7d8ac7a288e0b52.tar.gz gsoc2013-evolution-670e6d167863d4c8d8dde107e7d8ac7a288e0b52.tar.bz2 gsoc2013-evolution-670e6d167863d4c8d8dde107e7d8ac7a288e0b52.tar.lz gsoc2013-evolution-670e6d167863d4c8d8dde107e7d8ac7a288e0b52.tar.xz gsoc2013-evolution-670e6d167863d4c8d8dde107e7d8ac7a288e0b52.tar.zst gsoc2013-evolution-670e6d167863d4c8d8dde107e7d8ac7a288e0b52.zip |
** Fix for bug #249844
2008-08-06 Milan Crha <mcrha@redhat.com>
** Fix for bug #249844
* addressbook/gui/component/addressbook-component.c:
* calendar/gui/tasks-component.c: (impl__get_userCreatableItems):
* calendar/gui/memos-component.c: (impl__get_userCreatableItems):
* mail/mail-component.c: (impl__get_userCreatableItems):
* shell/test/evolution-test-component.c: (impl__get_userCreatableItems):
(impl__get_userCreatableItems): Do not let compiler claim.
* mail/em-event.h: (struct _EMEventTargetCustomIcon): Declare 'folder_name'
as const char * to let compiler happy; no copy of the pointer anyway.
* calendar/gui/calendar-component.c: (impl__get_userCreatableItems):
Use C_() macro instead of Q_() macro.
Use fully qualified names for "New" submenu entries.
svn path=/trunk/; revision=35916
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 7 | ||||
-rw-r--r-- | shell/test/evolution-test-component.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 6f12b5bd4b..b4df3e0962 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,10 @@ +2008-08-06 Milan Crha <mcrha@redhat.com> + + ** Fix for bug #249844 + + * test/evolution-test-component.c: (impl__get_userCreatableItems): + Do not let compiler claim. + 2008-08-04 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #249844 diff --git a/shell/test/evolution-test-component.c b/shell/test/evolution-test-component.c index 1ce8006ea5..88a7b05bf9 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 = C_("New", "_Test"); + list->_buffer[0].menuDescription = (char *) C_("New", "_Test"); list->_buffer[0].tooltip = _("Create a new test item"); list->_buffer[0].menuShortcut = 'i'; list->_buffer[0].iconName = ""; |