From ae9c5dc3711b6e37b97cb2974fb8322a65cf7869 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 25 Aug 2011 23:23:37 +0100 Subject: regenerate list --- svx/source/form/formcontrolling.cxx | 20 -------------------- svx/source/inc/formcontrolling.hxx | 17 ----------------- 2 files changed, 37 deletions(-) (limited to 'svx') diff --git a/svx/source/form/formcontrolling.cxx b/svx/source/form/formcontrolling.cxx index 87428ebf5809..c7727c107520 100644 --- a/svx/source/form/formcontrolling.cxx +++ b/svx/source/form/formcontrolling.cxx @@ -280,26 +280,6 @@ namespace svx osl_decrementInterlockedCount( &m_refCount ); } - //-------------------------------------------------------------------- - FormControllerHelper::FormControllerHelper( const ::comphelper::ComponentContext& _rContext, - const Reference< XForm >& _rxForm, IControllerFeatureInvalidation* _pInvalidationCallback ) - :m_aContext( _rContext ) - ,m_pInvalidationCallback( _pInvalidationCallback ) - { - osl_incrementInterlockedCount( &m_refCount ); - try - { - m_xFormOperations = FormOperations::createWithForm( m_aContext.getUNOContext(), _rxForm ); - if ( m_xFormOperations.is() ) - m_xFormOperations->setFeatureInvalidation( this ); - } - catch( const Exception& ) - { - DBG_UNHANDLED_EXCEPTION(); - } - osl_decrementInterlockedCount( &m_refCount ); - } - //-------------------------------------------------------------------- FormControllerHelper::~FormControllerHelper( ) { diff --git a/svx/source/inc/formcontrolling.hxx b/svx/source/inc/formcontrolling.hxx index d2c249f11e8a..ae27a1299ed0 100644 --- a/svx/source/inc/formcontrolling.hxx +++ b/svx/source/inc/formcontrolling.hxx @@ -189,23 +189,6 @@ namespace svx IControllerFeatureInvalidation* _pInvalidationCallback ); - /** constructs the helper form a XForm instance - - Any functionality which depends on a controller will not be available. - - @param _rContext - the context the component lives in - @param _rxForm - The form which the helper should be responsible for. Must not be . - @param _pInvalidationCallback - the callback for invalidating feature states - */ - FormControllerHelper( - const ::comphelper::ComponentContext& _rContext, - const ::com::sun::star::uno::Reference< ::com::sun::star::form::XForm >& _rxForm, - IControllerFeatureInvalidation* _pInvalidationCallback - ); - // forwards to the XFormOperations implementation ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRowSet > getCursor() const; -- cgit