summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-08-26 21:10:27 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-08-26 21:10:48 +0100
commit55cdf3c5f44afe47cbe9eb32cc4f6fdcb6106d8d (patch)
treeb1c6be1d7315c5fba3dbc59d3eabbdfbd5850e3d /sw
parentb224582aa3e7f0971035603515cf9c0e54ef299d (diff)
most debug-level OUString::valueOf
Change-Id: I3e3cebe225e27a33be423c8b5fa2261b4a48e88c
Diffstat (limited to 'sw')
-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;
}