summaryrefslogtreecommitdiff
path: root/xmlhelp/source/cxxhelp/provider/urlparameter.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-07-02 22:27:12 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-07-02 22:27:12 +0200
commit18f390b7a358abad2f04ddb87fc32e82d5205d5e (patch)
tree5aa55fa5d092b54d25e05ca4f1145090890a7dd3 /xmlhelp/source/cxxhelp/provider/urlparameter.cxx
parentde93c6260c90b7b523ed992914f62c54c64ce25a (diff)
loplugin:casttovoid: xmlhelp
Change-Id: Ic23705873a428215ff993caf79021cbb1029c1a5
Diffstat (limited to 'xmlhelp/source/cxxhelp/provider/urlparameter.cxx')
-rw-r--r--xmlhelp/source/cxxhelp/provider/urlparameter.cxx18
1 files changed, 2 insertions, 16 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/urlparameter.cxx b/xmlhelp/source/cxxhelp/provider/urlparameter.cxx
index 85d33f8463a1..6ccdf3964527 100644
--- a/xmlhelp/source/cxxhelp/provider/urlparameter.cxx
+++ b/xmlhelp/source/cxxhelp/provider/urlparameter.cxx
@@ -335,15 +335,8 @@ private:
};
-void URLParameter::open( const Command& aCommand,
- sal_Int32 CommandId,
- const Reference< XCommandEnvironment >& Environment,
- const Reference< XOutputStream >& xDataSink )
+void URLParameter::open( const Reference< XOutputStream >& xDataSink )
{
- (void)aCommand;
- (void)CommandId;
- (void)Environment;
-
if( ! xDataSink.is() )
return;
@@ -361,15 +354,8 @@ void URLParameter::open( const Command& aCommand,
}
-void URLParameter::open( const Command& aCommand,
- sal_Int32 CommandId,
- const Reference< XCommandEnvironment >& Environment,
- const Reference< XActiveDataSink >& xDataSink )
+void URLParameter::open( const Reference< XActiveDataSink >& xDataSink )
{
- (void)aCommand;
- (void)CommandId;
- (void)Environment;
-
// a standard document or else an active help text, plug in the new input stream
xDataSink->setInputStream( new InputStreamTransformer( this,m_pDatabases,isRoot() ) );
}