summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-19 14:52:56 +0200
committerNoel Grandin <noel@peralex.com>2013-10-01 10:08:35 +0200
commitde6a35f52276b601a8ebc68fbcfd28ad2db84f6f (patch)
tree096f5b527671bf67a947ca556d918113d3d64177
parent57d8250a96596678a0d5a3f1698385691f92cda8 (diff)
convert SvxNumberFormatShell::SetComment4Entry from String to OUString
I seemed to have missed this in my earlier conversion process. Change-Id: I9266fac26425d552520ce68bdcce9b8f4cdbe9a6
-rw-r--r--include/svx/numfmtsh.hxx2
-rw-r--r--svx/source/items/numfmtsh.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/svx/numfmtsh.hxx b/include/svx/numfmtsh.hxx
index 86ade997f049..382a466343c0 100644
--- a/include/svx/numfmtsh.hxx
+++ b/include/svx/numfmtsh.hxx
@@ -159,7 +159,7 @@ public:
short GetCategory4Entry(short nEntry);
bool GetUserDefined4Entry(short nEntry);
OUString GetFormat4Entry(short nEntry);
- void SetComment4Entry(short nEntry,String aCommentString);
+ void SetComment4Entry(short nEntry, const OUString& aCommentString);
void SetCurrencySymbol(sal_uInt16 nPos);
sal_uInt32 GetCurrencySymbol();
diff --git a/svx/source/items/numfmtsh.cxx b/svx/source/items/numfmtsh.cxx
index c26468f7e557..a5f717383570 100644
--- a/svx/source/items/numfmtsh.cxx
+++ b/svx/source/items/numfmtsh.cxx
@@ -1263,7 +1263,7 @@ void SvxNumberFormatShell::MakePrevStringFromVal(
#*
#************************************************************************/
-void SvxNumberFormatShell::SetComment4Entry(short nEntry,String aEntStr)
+void SvxNumberFormatShell::SetComment4Entry(short nEntry, const OUString& aEntStr)
{
SvNumberformat *pNumEntry;
if(nEntry<0) return;