diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-08 14:11:23 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-08-15 09:11:32 +0200 |
commit | 710be6c8d423f82cdc6c936e1a9ff12f2bb4f3e6 (patch) | |
tree | c6a9963e878da1053e760af48cdb0a6d525ab817 /svtools | |
parent | 60dddd2012b759397c8ddd008f7d4bf65867e7a4 (diff) |
convert include/svtools/toolbarmenu.hxx from String to OUString
Change-Id: I41763b927cc8050bf1b461c91be527164f9fc14d
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/control/toolbarmenu.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/control/toolbarmenu.cxx b/svtools/source/control/toolbarmenu.cxx index d95deac84749..7f57c96cda48 100644 --- a/svtools/source/control/toolbarmenu.cxx +++ b/svtools/source/control/toolbarmenu.cxx @@ -540,7 +540,7 @@ void ToolbarMenu::enableEntry( int nEntryId, bool bEnable ) // -------------------------------------------------------------------- -void ToolbarMenu::setEntryText( int nEntryId, const String& rStr ) +void ToolbarMenu::setEntryText( int nEntryId, const OUString& rStr ) { ToolbarMenuEntry* pEntry = implSearchEntry( nEntryId ); if( pEntry && pEntry->maText != rStr ) @@ -793,14 +793,14 @@ void ToolbarMenu::LoseFocus() // -------------------------------------------------------------------- -void ToolbarMenu::appendEntry( int nEntryId, const String& rStr, MenuItemBits nItemBits ) +void ToolbarMenu::appendEntry( int nEntryId, const OUString& rStr, MenuItemBits nItemBits ) { appendEntry( new ToolbarMenuEntry( *this, nEntryId, rStr, nItemBits ) ); } // -------------------------------------------------------------------- -void ToolbarMenu::appendEntry( int nEntryId, const String& rStr, const Image& rImage, MenuItemBits nItemBits ) +void ToolbarMenu::appendEntry( int nEntryId, const OUString& rStr, const Image& rImage, MenuItemBits nItemBits ) { appendEntry( new ToolbarMenuEntry( *this, nEntryId, rImage, rStr, nItemBits ) ); } |