diff --git a/forms/source/component/EditBase.cxx b/forms/source/component/EditBase.cxx index 6eef99317fab..89a472b9932b 100644 --- a/forms/source/component/EditBase.cxx +++ b/forms/source/component/EditBase.cxx @@ -2,9 +2,9 @@ * * $RCSfile: EditBase.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: th $ $Date: 2001-05-11 09:32:43 $ + * last change: $Author: fs $ $Date: 2001-05-31 14:07:19 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -107,8 +107,9 @@ const sal_uInt16 FILTERPROPOSAL = 0x0004; OEditBaseModel::OEditBaseModel( const Reference& _rxFactory, const ::rtl::OUString& rUnoControlModelName, - const ::rtl::OUString& rDefault ) - :OBoundControlModel( _rxFactory, rUnoControlModelName, rDefault ) + const ::rtl::OUString& rDefault, + const sal_Bool _bSetDelegator) + :OBoundControlModel( _rxFactory, rUnoControlModelName, rDefault, _bSetDelegator ) ,m_bFilterProposal(sal_False) ,m_bEmptyIsNull(sal_True) ,m_nLastReadVersion(0) diff --git a/forms/source/component/EditBase.hxx b/forms/source/component/EditBase.hxx index 3d431306ba50..664a60aff2c6 100644 --- a/forms/source/component/EditBase.hxx +++ b/forms/source/component/EditBase.hxx @@ -2,9 +2,9 @@ * * $RCSfile: EditBase.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: oj $ $Date: 2000-11-23 08:48:15 $ + * last change: $Author: fs $ $Date: 2001-05-31 14:07:19 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -135,7 +135,8 @@ public: OEditBaseModel( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory>& _rxFactory, const ::rtl::OUString& rUnoControlModelName, - const ::rtl::OUString& rDefault ); + const ::rtl::OUString& rDefault, + const sal_Bool _bSetDelegator = sal_True); // ::com::sun::star::io::XPersistObject virtual void SAL_CALL write(const ::com::sun::star::uno::Reference< ::com::sun::star::io::XObjectOutputStream>& _rxOutStream);