summaryrefslogtreecommitdiff
path: root/include/oox/export
diff options
context:
space:
mode:
Diffstat (limited to 'include/oox/export')
-rw-r--r--include/oox/export/utils.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/oox/export/utils.hxx b/include/oox/export/utils.hxx
index 06ddfe3391e5..b6bafddd78cb 100644
--- a/include/oox/export/utils.hxx
+++ b/include/oox/export/utils.hxx
@@ -49,9 +49,9 @@ static inline sal_Int64 TwipsToEMU( sal_Int32 nTwips )
}
template <typename T>
-OString writePercentage(T number)
+OString write1000thOfAPercent(T number)
{
- return OString::number(number) + "%";
+ return OString::number( number * 1000 );
}
#endif