diff options
author | Noel Grandin <noel@peralex.com> | 2013-09-20 15:43:12 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-10-04 08:48:55 +0200 |
commit | 3807fff9f1c0aa96d5db0a42c9bc5038d3ff35b2 (patch) | |
tree | 5d2b10235410f7363a785d9425e895604591c377 /sc/source/ui/miscdlgs | |
parent | 132731f0704b5a9e996cb0d413c8e369efe8875f (diff) |
convert sc/.../shtabdlg.hxx from String to OUString
Change-Id: If14242d10a417b692f39f093febcda803f08c008
Diffstat (limited to 'sc/source/ui/miscdlgs')
-rw-r--r-- | sc/source/ui/miscdlgs/shtabdlg.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/miscdlgs/shtabdlg.cxx b/sc/source/ui/miscdlgs/shtabdlg.cxx index ae3f4877697f..03949ef7593b 100644 --- a/sc/source/ui/miscdlgs/shtabdlg.cxx +++ b/sc/source/ui/miscdlgs/shtabdlg.cxx @@ -51,7 +51,7 @@ ScShowTabDlg::ScShowTabDlg( Window* pParent ) : //------------------------------------------------------------------------ void ScShowTabDlg::SetDescription( - const String& rTitle, const String& rFixedText, + const OUString& rTitle, const OUString& rFixedText, const OString& rDlgHelpId, const OString& sLbHelpId ) { SetText( rTitle ); @@ -60,7 +60,7 @@ void ScShowTabDlg::SetDescription( aLb.SetHelpId( sLbHelpId ); } -void ScShowTabDlg::Insert( const String& rString, sal_Bool bSelected ) +void ScShowTabDlg::Insert( const OUString& rString, sal_Bool bSelected ) { aLb.InsertEntry( rString ); if( bSelected ) @@ -74,7 +74,7 @@ sal_uInt16 ScShowTabDlg::GetSelectEntryCount() const return aLb.GetSelectEntryCount(); } -String ScShowTabDlg::GetSelectEntry(sal_uInt16 nPos) const +OUString ScShowTabDlg::GetSelectEntry(sal_uInt16 nPos) const { return aLb.GetSelectEntry(nPos); } |