summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sw/source/filter/ww8/hash_wrap.hxx6
-rw-r--r--sw/source/filter/ww8/sortedarray.hxx6
2 files changed, 6 insertions, 6 deletions
diff --git a/sw/source/filter/ww8/hash_wrap.hxx b/sw/source/filter/ww8/hash_wrap.hxx
index 189e4b17ed72..55231b95ebbd 100644
--- a/sw/source/filter/ww8/hash_wrap.hxx
+++ b/sw/source/filter/ww8/hash_wrap.hxx
@@ -88,11 +88,11 @@ namespace ww
reinterpret_cast<const sal_uInt8 *>(&(*pIter));
for (size_t i=0; i < nSize; ++i)
{
- sError += OUString::valueOf(
+ sError += OUString::number(
static_cast<sal_Int32>(pHack[i]), 16);
- sError += OUString::valueOf(sal_Unicode(' '));
+ sError += OUString(' ');
}
- sError += OUString::valueOf(sal_Unicode('\n'));
+ sError += OUString('\n');
while (*pIter == *(pIter+1) && pIter < pBeforeEnd)
++pIter;
}
diff --git a/sw/source/filter/ww8/sortedarray.hxx b/sw/source/filter/ww8/sortedarray.hxx
index 9a596edac533..5f975a7ba524 100644
--- a/sw/source/filter/ww8/sortedarray.hxx
+++ b/sw/source/filter/ww8/sortedarray.hxx
@@ -85,11 +85,11 @@ namespace ww
reinterpret_cast<const sal_uInt8 *>(&(*pIter));
for (size_t i=0; i < nSize; ++i)
{
- sError += OUString::valueOf(
+ sError += OUString::number(
static_cast<sal_Int32>(pHack[i]), 16);
- sError += OUString::valueOf(sal_Unicode(' '));
+ sError += OUString(' ');
}
- sError += OUString::valueOf(sal_Unicode('\n'));
+ sError += OUString('\n');
while (*pIter == *(pIter+1) && pIter < pBeforeEnd)
++pIter;
}