summaryrefslogtreecommitdiff
path: root/include/oox/export/utils.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/oox/export/utils.hxx')
-rw-r--r--include/oox/export/utils.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/oox/export/utils.hxx b/include/oox/export/utils.hxx
index e28b01c1d95d..4e9fa9866341 100644
--- a/include/oox/export/utils.hxx
+++ b/include/oox/export/utils.hxx
@@ -27,7 +27,7 @@ inline OString I32SHEX(sal_Int32 x)
{
OString aStr = OString::number(x, 16);
while (aStr.getLength() < 6)
- aStr = OString("0") + aStr;
+ aStr = "0" + aStr;
return aStr;
}