diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-06-22 09:08:02 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-06-22 09:09:32 +0300 |
commit | b1d08330f488ce079669d7f7255772469499ed8f (patch) | |
tree | bdb6c95aa557c16f9e4f95dbca49630e837e7e07 /l10ntools | |
parent | 1ad1d7c114931b3daf870fd8935463b92510787d (diff) |
Fix MinGW compilation
Diffstat (limited to 'l10ntools')
-rw-r--r-- | l10ntools/source/help/HelpCompiler.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/source/help/HelpCompiler.hxx b/l10ntools/source/help/HelpCompiler.hxx index d40c72547203..6642d571c67b 100644 --- a/l10ntools/source/help/HelpCompiler.hxx +++ b/l10ntools/source/help/HelpCompiler.hxx @@ -108,7 +108,7 @@ namespace fs { ::rtl::OUString ustrSystemPath; osl::File::getSystemPathFromFileURL(data, ustrSystemPath); - return ustrSystemPath.getStr(); + return (wchar_t const *) ustrSystemPath.getStr(); } #endif std::string native_directory_string() const { return native_file_string(); } |