summaryrefslogtreecommitdiff
path: root/editeng/source
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2014-02-24 09:05:50 +0100
committerMatteo Casalin <matteo.casalin@yahoo.com>2014-02-24 09:08:35 +0100
commit83aa6d8180f289e5ae4034560dbd95ab160b1ac2 (patch)
tree10fea22a5780ba93c594456130b4db1a93626592 /editeng/source
parentc1e06b7a91e0a2f2ddcf9d669bccb0eb488dc4f8 (diff)
Remove some temporaries around calls to SvNumberFormatter methods
Change-Id: Ib03c97a52df120bac1ac9b2b9d2e52431ead1027
Diffstat (limited to 'editeng/source')
-rw-r--r--editeng/source/items/flditem.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/items/flditem.cxx b/editeng/source/items/flditem.cxx
index 99f05750bb56..03fc0dae51b7 100644
--- a/editeng/source/items/flditem.cxx
+++ b/editeng/source/items/flditem.cxx
@@ -502,7 +502,7 @@ OUString SvxDateField::GetFormatted( Date& aDate, SvxDateFormat eFormat, SvNumbe
double fDiffDate = aDate - *(rFormatter.GetNullDate());
OUString aStr;
- Color* pColor = NULL;
+ Color* pColor = NULL;
rFormatter.GetOutputString( fDiffDate, nFormatKey, aStr, &pColor );
return aStr;
}