summaryrefslogtreecommitdiff
path: root/xmlhelp/source/cxxhelp/provider/provider.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-04-15 13:17:16 +0200
committerNoel Grandin <noel@peralex.com>2015-04-23 13:08:48 +0200
commit0a7b739cc33a56339a2bf0f8f0253f9402cabd35 (patch)
tree893c99038c2474391bd474e356ac5edad813ba22 /xmlhelp/source/cxxhelp/provider/provider.cxx
parenta57a1494a35e188845b6df3361680d4ed3149427 (diff)
loplugin:staticmethods
Change-Id: I2ee91d07cf9d46cdc385a4db8473550b05e2f0ad
Diffstat (limited to 'xmlhelp/source/cxxhelp/provider/provider.cxx')
-rw-r--r--xmlhelp/source/cxxhelp/provider/provider.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/provider.cxx b/xmlhelp/source/cxxhelp/provider/provider.cxx
index 0aa8584613d0..781554d8a445 100644
--- a/xmlhelp/source/cxxhelp/provider/provider.cxx
+++ b/xmlhelp/source/cxxhelp/provider/provider.cxx
@@ -368,7 +368,7 @@ ContentProvider::getConfiguration() const
uno::Reference< container::XHierarchicalNameAccess >
ContentProvider::getHierAccess(
const uno::Reference< lang::XMultiServiceFactory >& sProvider,
- const char* file ) const
+ const char* file )
{
uno::Reference< container::XHierarchicalNameAccess > xHierAccess;
@@ -399,7 +399,7 @@ ContentProvider::getHierAccess(
OUString
ContentProvider::getKey(
const uno::Reference< container::XHierarchicalNameAccess >& xHierAccess,
- const char* key ) const
+ const char* key )
{
OUString instPath;
if( xHierAccess.is() )
@@ -422,7 +422,7 @@ ContentProvider::getKey(
bool
ContentProvider::getBooleanKey(
const uno::Reference< container::XHierarchicalNameAccess >& xHierAccess,
- const char* key ) const
+ const char* key )
{
bool ret = false;
if( xHierAccess.is() )
@@ -442,7 +442,7 @@ ContentProvider::getBooleanKey(
return ret;
}
-void ContentProvider::subst( OUString& instpath ) const
+void ContentProvider::subst( OUString& instpath )
{
SvtPathOptions aOptions;
instpath = aOptions.SubstituteVariable( instpath );