summaryrefslogtreecommitdiffstats
path: root/forms/source/helper/controlfeatureinterception.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source/helper/controlfeatureinterception.cxx')
-rw-r--r--forms/source/helper/controlfeatureinterception.cxx10
1 files changed, 2 insertions, 8 deletions
diff --git a/forms/source/helper/controlfeatureinterception.cxx b/forms/source/helper/controlfeatureinterception.cxx
index 1196afd70742..4bb4ef189a1a 100644
--- a/forms/source/helper/controlfeatureinterception.cxx
+++ b/forms/source/helper/controlfeatureinterception.cxx
@@ -127,21 +127,15 @@ namespace frm
}
}
- Reference< XDispatch > ControlFeatureInterception::queryDispatch( const URL& _rURL, const OUString& _rTargetFrameName )
+ Reference< XDispatch > ControlFeatureInterception::queryDispatch( const URL& _rURL )
{
Reference< XDispatch > xDispatcher;
if ( m_xFirstDispatchInterceptor.is() )
- xDispatcher = m_xFirstDispatchInterceptor->queryDispatch( _rURL, _rTargetFrameName, 0 );
+ xDispatcher = m_xFirstDispatchInterceptor->queryDispatch( _rURL, OUString(), 0 );
return xDispatcher;
}
- Reference< XDispatch > ControlFeatureInterception::queryDispatch( const URL& _rURL )
- {
- return queryDispatch( _rURL, OUString() );
- }
-
-
Reference< XDispatch > ControlFeatureInterception::queryDispatch( const sal_Char* _pAsciiURL )
{
return queryDispatch( m_pUrlTransformer->getStrictURLFromAscii( _pAsciiURL ) );