summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-03 14:11:52 +0200
committerNoel Grandin <noel@peralex.com>2013-09-05 08:54:45 +0200
commitb39e68d72a34c566aca0b5c15b173da62a8ec9e2 (patch)
tree235ac9cdbc4a7a7188dce9356ebc9527f0fa5681
parentebdaa4d5bf9538c693f76c7f32c2235e4740a65c (diff)
convert include/svx/frmdirlbox.hxx from String to OUString
Change-Id: Ib7d7a6e62f5fb28664c25fbc96cd3d56bf1797ac
-rw-r--r--include/svx/frmdirlbox.hxx2
-rw-r--r--svx/source/dialog/frmdirlbox.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/svx/frmdirlbox.hxx b/include/svx/frmdirlbox.hxx
index 1248e63558a5..427c0df0f449 100644
--- a/include/svx/frmdirlbox.hxx
+++ b/include/svx/frmdirlbox.hxx
@@ -45,7 +45,7 @@ public:
/** Inserts a string with corresponding direction enum into the listbox. */
void InsertEntryValue(
- const String& rString,
+ const OUString& rString,
SvxFrameDirection eDirection,
sal_uInt16 nPos = LISTBOX_APPEND );
/** Removes the entry, that represents the specified frame direction. */
diff --git a/svx/source/dialog/frmdirlbox.cxx b/svx/source/dialog/frmdirlbox.cxx
index ad1697d30f82..0d977d9f6b09 100644
--- a/svx/source/dialog/frmdirlbox.cxx
+++ b/svx/source/dialog/frmdirlbox.cxx
@@ -62,7 +62,7 @@ extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeFrameDirectionListBox(Windo
}
-void FrameDirectionListBox::InsertEntryValue( const String& rString, SvxFrameDirection eDirection, sal_uInt16 nPos )
+void FrameDirectionListBox::InsertEntryValue( const OUString& rString, SvxFrameDirection eDirection, sal_uInt16 nPos )
{
sal_uInt16 nRealPos = InsertEntry( rString, nPos );
SetEntryData( nRealPos, lclEnumToVoid( eDirection ) );