diff options
Diffstat (limited to 'xmlhelp/source')
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/urlparameter.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/urlparameter.cxx b/xmlhelp/source/cxxhelp/provider/urlparameter.cxx index e4f483d24d26..fddd2acacf79 100644 --- a/xmlhelp/source/cxxhelp/provider/urlparameter.cxx +++ b/xmlhelp/source/cxxhelp/provider/urlparameter.cxx @@ -282,8 +282,6 @@ rtl::OUString URLParameter::get_the_jar() void URLParameter::readBerkeley() { - static rtl::OUString aQuestionMark("?"); - if( get_id().compareToAscii("") == 0 ) return; @@ -344,9 +342,9 @@ void URLParameter::readBerkeley() if( !aExtensionPath.isEmpty() ) { rtl::OUStringBuffer aExtendedJarStrBuf; - aExtendedJarStrBuf.append( aQuestionMark ); + aExtendedJarStrBuf.append( '?' ); aExtendedJarStrBuf.append( aExtensionPath ); - aExtendedJarStrBuf.append( aQuestionMark ); + aExtendedJarStrBuf.append( '?' ); aExtendedJarStrBuf.append( m_aJar ); m_aJar = aExtendedJarStrBuf.makeStringAndClear(); m_aExtensionRegistryPath = aExtensionRegistryPath; |