diff options
author | Noel Grandin <noel@peralex.com> | 2013-09-03 15:46:03 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-09-05 08:54:49 +0200 |
commit | 10cbf4838e6e05e58887e5a14aa5e274521854b2 (patch) | |
tree | a46801c568b99c25b1c4ef23243aa530ce210ef1 /svx | |
parent | 1647a569e73edad802243dc1cb57cb9b01548f59 (diff) |
convert include/svx/checklbx.hxx from String to OUString
Change-Id: If632dc3e2fc13379ab3f2bb3f63f1e48a5119a57
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/dialog/checklbx.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/dialog/checklbx.cxx b/svx/source/dialog/checklbx.cxx index e923d91f7d07..03869f7db50b 100644 --- a/svx/source/dialog/checklbx.cxx +++ b/svx/source/dialog/checklbx.cxx @@ -122,13 +122,13 @@ sal_uInt16 SvxCheckListBox::GetSelectEntryPos() const // ----------------------------------------------------------------------- -String SvxCheckListBox::GetText( sal_uInt16 nPos ) const +OUString SvxCheckListBox::GetText( sal_uInt16 nPos ) const { SvTreeListEntry* pEntry = GetEntry( nPos ); if ( pEntry ) return GetEntryText( pEntry ); - return String(); + return OUString(); } // ----------------------------------------------------------------------- |