diff options
Diffstat (limited to 'xmlhelp')
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/urlparameter.cxx | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/urlparameter.cxx b/xmlhelp/source/cxxhelp/provider/urlparameter.cxx index 6f92fae77db8..8859970980b9 100644 --- a/xmlhelp/source/cxxhelp/provider/urlparameter.cxx +++ b/xmlhelp/source/cxxhelp/provider/urlparameter.cxx @@ -737,14 +737,12 @@ InputStreamTransformer::InputStreamTransformer( URLParameter* urlParam, parString[last++] = "System"; parString[last++] = "'" + urlParam->getByName( "System" ) + "'"; parString[last++] = "productname"; - parString[last++] = "'" + OString( - pDatabases->getProductName().getStr(), - pDatabases->getProductName().getLength(), + parString[last++] = "'" + OUStringToOString( + pDatabases->getProductName(), RTL_TEXTENCODING_UTF8 ) + "'"; parString[last++] = "productversion"; parString[last++] = "'" + - OString( pDatabases->getProductVersion().getStr(), - pDatabases->getProductVersion().getLength(), + OUStringToOString( pDatabases->getProductVersion(), RTL_TEXTENCODING_UTF8 ) + "'"; parString[last++] = "imgtheme"; @@ -829,9 +827,8 @@ InputStreamTransformer::InputStreamTransformer( URLParameter* urlParam, OUString xslURL = pDatabases->getInstallPathAsURL(); - OString xslURLascii = OString( - xslURL.getStr(), - xslURL.getLength(), + OString xslURLascii = OUStringToOString( + xslURL, RTL_TEXTENCODING_UTF8) + "main_transform.xsl"; |