From 7477ab139142c55da6a7d4fb10903dcb464ee97b Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 17 Oct 2016 16:02:40 +0200 Subject: loplugin:inlineablemethods in xmloff Change-Id: I22202f85c65a862ccdafe1d521e2945e3d99252a --- xmlhelp/source/cxxhelp/provider/urlparameter.cxx | 2 +- xmlhelp/source/cxxhelp/provider/urlparameter.hxx | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) (limited to 'xmlhelp') diff --git a/xmlhelp/source/cxxhelp/provider/urlparameter.cxx b/xmlhelp/source/cxxhelp/provider/urlparameter.cxx index 0099970f7c6e..f0e3b76381ee 100644 --- a/xmlhelp/source/cxxhelp/provider/urlparameter.cxx +++ b/xmlhelp/source/cxxhelp/provider/urlparameter.cxx @@ -102,7 +102,7 @@ OString URLParameter::getByName( const char* par ) else if( strcmp( par,"System" ) == 0 ) val = get_system(); else if( strcmp( par,"HelpPrefix" ) == 0 ) - val = get_prefix(); + val = m_aPrefix; return OString( val.getStr(),val.getLength(),RTL_TEXTENCODING_UTF8 ); } diff --git a/xmlhelp/source/cxxhelp/provider/urlparameter.hxx b/xmlhelp/source/cxxhelp/provider/urlparameter.hxx index 294a47396641..21dd802aae91 100644 --- a/xmlhelp/source/cxxhelp/provider/urlparameter.hxx +++ b/xmlhelp/source/cxxhelp/provider/urlparameter.hxx @@ -147,8 +147,6 @@ namespace chelp { return m_aModule; } - const OUString& get_prefix() const { return m_aPrefix; } - OUString const & get_language(); OUString const & get_program(); -- cgit