diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-01-24 09:30:42 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-01-24 13:02:31 +0100 |
commit | 6239993d0da8e71af15428f502c364e932591bd6 (patch) | |
tree | 0bf399094751f7e4b614ed534f81690a6df52236 /xmlhelp | |
parent | e14fafaafb3500d65be9c1b69fcb86b31d36468c (diff) |
loplugin:constparams in ucb..xmlhelp
Change-Id: I3c1e0bfbba1a1849075500882133aac3899de5c8
Reviewed-on: https://gerrit.libreoffice.org/66834
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmlhelp')
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx | 2 | ||||
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/resultsetforquery.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx b/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx index 93007b70c6df..90ed9a015e5d 100644 --- a/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx +++ b/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx @@ -71,7 +71,7 @@ struct HitItem ResultSetForQuery::ResultSetForQuery( const uno::Reference< uno::XComponentContext >& rxContext, const uno::Reference< XContentProvider >& xProvider, const uno::Sequence< beans::Property >& seq, - URLParameter& aURLParameter, + const URLParameter& aURLParameter, Databases* pDatabases ) : ResultSetBase( rxContext,xProvider,seq ), m_aURLParameter( aURLParameter ) diff --git a/xmlhelp/source/cxxhelp/provider/resultsetforquery.hxx b/xmlhelp/source/cxxhelp/provider/resultsetforquery.hxx index 249ece256574..98480b04e6d6 100644 --- a/xmlhelp/source/cxxhelp/provider/resultsetforquery.hxx +++ b/xmlhelp/source/cxxhelp/provider/resultsetforquery.hxx @@ -39,7 +39,7 @@ namespace chelp { ResultSetForQuery( const css::uno::Reference<css::uno::XComponentContext>& rxContext, const css::uno::Reference<css::ucb::XContentProvider>& xProvider, const css::uno::Sequence< css::beans::Property >& seq, - URLParameter& aURLParameter, + const URLParameter& aURLParameter, Databases* pDatabases ); |