summaryrefslogtreecommitdiff
path: root/l10ntools
diff options
context:
space:
mode:
authortono <tono@openoffice.org>2011-03-22 22:20:11 +0900
committertono <tono@openoffice.org>2011-03-22 22:20:11 +0900
commita989e6436650996d12fe8a01c7894d79bd3c30fc (patch)
tree50a2933ad82c460a078f27e867d79b088436f7f7 /l10ntools
parent78f80b020fe009bc48e9e5f8b7862de51f1f8381 (diff)
mingwport34: i#117493: mingw port of i109096 - WCHAR is not compatible with sal_Unicode in mingw
Diffstat (limited to 'l10ntools')
-rwxr-xr-xl10ntools/source/help/HelpCompiler.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/source/help/HelpCompiler.hxx b/l10ntools/source/help/HelpCompiler.hxx
index 8ce6098d21a9..fa2676c3bac1 100755
--- a/l10ntools/source/help/HelpCompiler.hxx
+++ b/l10ntools/source/help/HelpCompiler.hxx
@@ -107,7 +107,7 @@ namespace fs
{
::rtl::OUString ustrSystemPath;
osl::File::getSystemPathFromFileURL(data, ustrSystemPath);
- return ustrSystemPath.getStr();
+ return reinterpret_cast< wchar_t const * >(ustrSystemPath.getStr());
}
#endif
std::string native_directory_string() const { return native_file_string(); }