summaryrefslogtreecommitdiff
path: root/forms/source/helper
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-03-23 10:04:32 +0200
committerNoel Grandin <noel@peralex.com>2016-03-23 10:19:43 +0200
commitaec2477b41ea09e914ff64965099d0cea1411ba7 (patch)
treee9c759a1bd17e4e04f2df6ad68b41e9c74dfe3ea /forms/source/helper
parent73140c6f3485e3f221fe6f272c21104b8575e12c (diff)
loplugin:constantparam in forms
Change-Id: Iebce160fd6c3de63ba179d747768fd4cf420baec
Diffstat (limited to 'forms/source/helper')
-rw-r--r--forms/source/helper/controlfeatureinterception.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/forms/source/helper/controlfeatureinterception.cxx b/forms/source/helper/controlfeatureinterception.cxx
index bc3dd494afbe..4a3740f47f17 100644
--- a/forms/source/helper/controlfeatureinterception.cxx
+++ b/forms/source/helper/controlfeatureinterception.cxx
@@ -127,18 +127,18 @@ namespace frm
}
}
- Reference< XDispatch > ControlFeatureInterception::queryDispatch( const URL& _rURL, const OUString& _rTargetFrameName, ::sal_Int32 _nSearchFlags )
+ Reference< XDispatch > ControlFeatureInterception::queryDispatch( const URL& _rURL, const OUString& _rTargetFrameName )
{
Reference< XDispatch > xDispatcher;
if ( m_xFirstDispatchInterceptor.is() )
- xDispatcher = m_xFirstDispatchInterceptor->queryDispatch( _rURL, _rTargetFrameName, _nSearchFlags );
+ xDispatcher = m_xFirstDispatchInterceptor->queryDispatch( _rURL, _rTargetFrameName, 0 );
return xDispatcher;
}
Reference< XDispatch > ControlFeatureInterception::queryDispatch( const URL& _rURL )
{
- return queryDispatch( _rURL, OUString(), 0 );
+ return queryDispatch( _rURL, OUString() );
}