diff options
Diffstat (limited to 'l10ntools/source/help/HelpCompiler.hxx')
-rw-r--r-- | l10ntools/source/help/HelpCompiler.hxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/l10ntools/source/help/HelpCompiler.hxx b/l10ntools/source/help/HelpCompiler.hxx index 016f7eefb8bc..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(); } @@ -322,6 +322,11 @@ private: bool bExtensionMode; }; +inline char tocharlower(char c) +{ + return static_cast<char>(tolower(c)); +} + #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |