diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-21 17:44:11 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-08-22 10:49:34 +0200 |
commit | 7fb84f7dc2dc05688d6afdeb2fc6bd3ee3ac8ae8 (patch) | |
tree | 237af38461c9afded131353a5575bd69f34adc3c /include/sfx2/titledockwin.hxx | |
parent | 48ee66ae5e54d3afd85747edea0f0efa1abf2a79 (diff) |
convert include/sfx2/titledockwin.hxx from String to OUString
Change-Id: Ifd4f1548ad98665288b2b2ea8f14fa0a7e3bd697
Diffstat (limited to 'include/sfx2/titledockwin.hxx')
-rw-r--r-- | include/sfx2/titledockwin.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/sfx2/titledockwin.hxx b/include/sfx2/titledockwin.hxx index 09b500caa6bc..5712d32ad614 100644 --- a/include/sfx2/titledockwin.hxx +++ b/include/sfx2/titledockwin.hxx @@ -50,7 +50,7 @@ namespace sfx2 /** sets a title to be displayed in the docking window */ - void SetTitle( const String& i_rTitle ); + void SetTitle( const OUString& i_rTitle ); /** adds a drop down item to the toolbox. Usually, this is used to add some kind of menu to the toolbox. @@ -63,7 +63,7 @@ namespace sfx2 @return the ID of the newly created toolbox item */ - sal_uInt16 AddDropDownToolBoxItem( const String& i_rItemText, const OString& i_nHelpId, const Link& i_rCallback ) + sal_uInt16 AddDropDownToolBoxItem( const OUString& i_rItemText, const OString& i_nHelpId, const Link& i_rCallback ) { return impl_addDropDownToolBoxItem( i_rItemText, i_nHelpId, i_rCallback ); } @@ -113,13 +113,13 @@ namespace sfx2 /** internal version of AddDropDownToolBoxItem */ - sal_uInt16 impl_addDropDownToolBoxItem( const String& i_rItemText, const OString& i_nHelpId, const Link& i_rCallback ); + sal_uInt16 impl_addDropDownToolBoxItem( const OUString& i_rItemText, const OString& i_nHelpId, const Link& i_rCallback ); /** returns the current title. If no title has been set via SetTitle, then the window text (Window::GetText) is returned. */ - String impl_getTitle() const; + OUString impl_getTitle() const; private: DECL_LINK( OnToolboxItemSelected, ToolBox* ); |