diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-24 14:29:17 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-24 14:29:57 +0200 |
commit | 3c4c5aa8cce98fb95473d63d05ba9097e9032ccc (patch) | |
tree | 79e715a14bbf7f7c97ef29c2e639e148a01bd18a /xmlhelp | |
parent | 536258758a9192ce8985d5055edac600568120fc (diff) |
loplugin:expandablemethods in writerfilter..xmlhelp
Change-Id: I23ce30e2f15b6fe857a727f1ef84c40d8d0b127d
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 ); |