summaryrefslogtreecommitdiff
path: root/helpcompiler/source/LuceneHelper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'helpcompiler/source/LuceneHelper.cxx')
-rw-r--r--helpcompiler/source/LuceneHelper.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/helpcompiler/source/LuceneHelper.cxx b/helpcompiler/source/LuceneHelper.cxx
index 7002162a7862..d6a2de2523e8 100644
--- a/helpcompiler/source/LuceneHelper.cxx
+++ b/helpcompiler/source/LuceneHelper.cxx
@@ -9,7 +9,7 @@
#include "LuceneHelper.hxx"
-std::vector<TCHAR> OUStringToTCHARVec(OUString const &rStr)
+std::vector<TCHAR> OUStringToTCHARVec(OUString const& rStr)
{
//UTF-16
if (sizeof(TCHAR) == sizeof(sal_Unicode))
@@ -17,7 +17,7 @@ std::vector<TCHAR> OUStringToTCHARVec(OUString const &rStr)
//UTF-32
std::vector<TCHAR> aRet;
- for (sal_Int32 nStrIndex = 0; nStrIndex < rStr.getLength(); )
+ for (sal_Int32 nStrIndex = 0; nStrIndex < rStr.getLength();)
{
const sal_uInt32 nCode = rStr.iterateCodePoints(&nStrIndex);
aRet.push_back(nCode);
@@ -26,7 +26,7 @@ std::vector<TCHAR> OUStringToTCHARVec(OUString const &rStr)
return aRet;
}
-OUString TCHARArrayToOUString(TCHAR const *str)
+OUString TCHARArrayToOUString(TCHAR const* str)
{
// UTF-16
if (sizeof(TCHAR) == sizeof(sal_Unicode))