diff options
author | Noel Grandin <noel@peralex.com> | 2015-12-21 10:50:20 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-12-21 12:45:49 +0200 |
commit | 4c7ce41582b85375df385a05770a0a79fa742bbc (patch) | |
tree | 2d57baa7f995cdf92d896b364b56953c191a491f /xmlhelp/source | |
parent | a218039d2a1176a5c788498fd8b50efe9b195b54 (diff) |
loplugin:unusedfields in xmlhelp,xmloff
Change-Id: I4d2f0ff95da5abaa3d0a0a5223616e09e0c476fc
Diffstat (limited to 'xmlhelp/source')
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/content.cxx | 4 | ||||
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/resultset.cxx | 4 | ||||
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/resultset.hxx | 4 |
3 files changed, 0 insertions, 12 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/content.cxx b/xmlhelp/source/cxxhelp/provider/content.cxx index c0355462413b..0826f439ab9c 100644 --- a/xmlhelp/source/cxxhelp/provider/content.cxx +++ b/xmlhelp/source/cxxhelp/provider/content.cxx @@ -330,9 +330,7 @@ uno::Any SAL_CALL Content::execute( uno::Reference< ucb::XDynamicResultSet > xSet = new DynamicResultSet( m_xContext, - this, aOpenCommand, - Environment, new ResultSetForRootFactory( m_xContext, m_xProvider.get(), @@ -346,9 +344,7 @@ uno::Any SAL_CALL Content::execute( uno::Reference< ucb::XDynamicResultSet > xSet = new DynamicResultSet( m_xContext, - this, aOpenCommand, - Environment, new ResultSetForQueryFactory( m_xContext, m_xProvider.get(), diff --git a/xmlhelp/source/cxxhelp/provider/resultset.cxx b/xmlhelp/source/cxxhelp/provider/resultset.cxx index 64b7d5f57a64..67ad5df99739 100644 --- a/xmlhelp/source/cxxhelp/provider/resultset.cxx +++ b/xmlhelp/source/cxxhelp/provider/resultset.cxx @@ -33,13 +33,9 @@ using namespace chelp; DynamicResultSet::DynamicResultSet( const Reference< XComponentContext >& rxContext, - const rtl::Reference< Content >& rxContent, const OpenCommandArgument2& rCommand, - const Reference< XCommandEnvironment >& rxEnv, ResultSetFactory* pFactory ) : ResultSetImplHelper( rxContext, rCommand ), - m_xContent( rxContent ), - m_xEnv( rxEnv ), m_pFactory( pFactory ) { } diff --git a/xmlhelp/source/cxxhelp/provider/resultset.hxx b/xmlhelp/source/cxxhelp/provider/resultset.hxx index 53432d7b2410..00173669d187 100644 --- a/xmlhelp/source/cxxhelp/provider/resultset.hxx +++ b/xmlhelp/source/cxxhelp/provider/resultset.hxx @@ -31,8 +31,6 @@ namespace chelp { class DynamicResultSet : public ::ucbhelper::ResultSetImplHelper { - rtl::Reference< Content > m_xContent; - css::uno::Reference< css::ucb::XCommandEnvironment > m_xEnv; ResultSetFactory* m_pFactory; private: @@ -42,9 +40,7 @@ namespace chelp { public: DynamicResultSet( const css::uno::Reference< css::uno::XComponentContext >& rxContext, - const rtl::Reference< Content >& rxContent, const css::ucb::OpenCommandArgument2& rCommand, - const css::uno::Reference< css::ucb::XCommandEnvironment >& rxEnv, ResultSetFactory* pFactory ); virtual ~DynamicResultSet(); |