diff options
Diffstat (limited to 'xmlhelp')
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/urlparameter.cxx | 4 | ||||
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/urlparameter.hxx | 8 |
2 files changed, 4 insertions, 8 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/urlparameter.cxx b/xmlhelp/source/cxxhelp/provider/urlparameter.cxx index f0e3b76381ee..d1819e91e44c 100644 --- a/xmlhelp/source/cxxhelp/provider/urlparameter.cxx +++ b/xmlhelp/source/cxxhelp/provider/urlparameter.cxx @@ -199,7 +199,7 @@ OUString URLParameter::get_the_tag() } -OUString URLParameter::get_the_path() +OUString URLParameter::get_path() { if(m_bUseDB) { if( ! m_bHelpDataFileRead ) @@ -227,7 +227,7 @@ OUString URLParameter::get_the_title() } -OUString URLParameter::get_the_jar() +OUString URLParameter::get_jar() { if(m_bUseDB) { if( ! m_bHelpDataFileRead ) diff --git a/xmlhelp/source/cxxhelp/provider/urlparameter.hxx b/xmlhelp/source/cxxhelp/provider/urlparameter.hxx index 21dd802aae91..289099991028 100644 --- a/xmlhelp/source/cxxhelp/provider/urlparameter.hxx +++ b/xmlhelp/source/cxxhelp/provider/urlparameter.hxx @@ -127,13 +127,13 @@ namespace chelp { // Not called for an directory - OUString get_path() { return get_the_path(); } + OUString get_path(); const OUString& get_eid() const { return m_aEid; } OUString get_title(); - OUString get_jar() { return get_the_jar(); } + OUString get_jar(); const OUString& get_ExtensionRegistryPath() const { return m_aExtensionRegistryPath; } @@ -214,12 +214,8 @@ namespace chelp { OUString get_the_tag(); - OUString get_the_path(); - OUString get_the_title(); - OUString get_the_jar(); - void readHelpDataFile(); void parse() throw( css::ucb::IllegalIdentifierException ); |