summaryrefslogtreecommitdiff
path: root/formula/source/ui/dlg/structpg.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-11 14:49:30 +0200
committerNoel Grandin <noel@peralex.com>2013-09-17 08:04:41 +0200
commite42e0efe504b95b3b3127b437cdf40621d1dafd8 (patch)
tree87c07267d7f1205af8ccda2cd2640d447159f9a7 /formula/source/ui/dlg/structpg.cxx
parent21842bbb4f36cdd41363f92e498c469097de523e (diff)
convert include/formula/IFunctionDescription.hxx from String to OUString
Change-Id: Ie3d3a3a55b50fe0dcac6be70fcce01fa544c374f
Diffstat (limited to 'formula/source/ui/dlg/structpg.cxx')
-rw-r--r--formula/source/ui/dlg/structpg.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/formula/source/ui/dlg/structpg.cxx b/formula/source/ui/dlg/structpg.cxx
index d672f73c1ab4..81bb9f50244a 100644
--- a/formula/source/ui/dlg/structpg.cxx
+++ b/formula/source/ui/dlg/structpg.cxx
@@ -133,11 +133,11 @@ SvTreeListEntry* StructPage::InsertEntry( const OUString& rText, SvTreeListEntry
return pEntry;
}
-String StructPage::GetEntryText(SvTreeListEntry* pEntry) const
+OUString StructPage::GetEntryText(SvTreeListEntry* pEntry) const
{
- String aString;
+ OUString aString;
if(pEntry!=NULL)
- aString=aTlbStruct.GetEntryText(pEntry);
+ aString = aTlbStruct.GetEntryText(pEntry);
return aString;
}