diff options
Diffstat (limited to 'xmlhelp/source')
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/urlparameter.cxx | 6 | ||||
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/urlparameter.hxx | 2 |
2 files changed, 3 insertions, 5 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/urlparameter.cxx b/xmlhelp/source/cxxhelp/provider/urlparameter.cxx index b2c3da0d7202..cbb49ef58e74 100644 --- a/xmlhelp/source/cxxhelp/provider/urlparameter.cxx +++ b/xmlhelp/source/cxxhelp/provider/urlparameter.cxx @@ -84,7 +84,7 @@ URLParameter::URLParameter( const OUString& aURL, : m_pDatabases( pDatabases ), m_aURL( aURL ) { - init( false ); + init(); parse(); } @@ -196,10 +196,8 @@ OUString URLParameter::get_program() } -void URLParameter::init( bool bDefaultLanguageIsInitialized ) +void URLParameter::init() { - (void)bDefaultLanguageIsInitialized; - m_bHelpDataFileRead = false; m_bStart = false; m_bUseDB = true; diff --git a/xmlhelp/source/cxxhelp/provider/urlparameter.hxx b/xmlhelp/source/cxxhelp/provider/urlparameter.hxx index 13bdff6dd003..044b92206c40 100644 --- a/xmlhelp/source/cxxhelp/provider/urlparameter.hxx +++ b/xmlhelp/source/cxxhelp/provider/urlparameter.hxx @@ -212,7 +212,7 @@ namespace chelp { // private methods - void init( bool bDefaultLanguageIsInitialized ); + void init(); OUString get_the_tag(); |