#87149# forward the _bSetDelegator ctor param to the base class

This commit is contained in:
Frank Schönheit
2001-05-31 13:07:19 +00:00
parent 7efee5a7c0
commit 478b93cc4e
2 changed files with 9 additions and 7 deletions

View File

@@ -2,9 +2,9 @@
* *
* $RCSfile: EditBase.cxx,v $ * $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 * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@@ -107,8 +107,9 @@ const sal_uInt16 FILTERPROPOSAL = 0x0004;
OEditBaseModel::OEditBaseModel( OEditBaseModel::OEditBaseModel(
const Reference<XMultiServiceFactory>& _rxFactory, const Reference<XMultiServiceFactory>& _rxFactory,
const ::rtl::OUString& rUnoControlModelName, const ::rtl::OUString& rUnoControlModelName,
const ::rtl::OUString& rDefault ) const ::rtl::OUString& rDefault,
:OBoundControlModel( _rxFactory, rUnoControlModelName, rDefault ) const sal_Bool _bSetDelegator)
:OBoundControlModel( _rxFactory, rUnoControlModelName, rDefault, _bSetDelegator )
,m_bFilterProposal(sal_False) ,m_bFilterProposal(sal_False)
,m_bEmptyIsNull(sal_True) ,m_bEmptyIsNull(sal_True)
,m_nLastReadVersion(0) ,m_nLastReadVersion(0)

View File

@@ -2,9 +2,9 @@
* *
* $RCSfile: EditBase.hxx,v $ * $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 * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@@ -135,7 +135,8 @@ public:
OEditBaseModel( OEditBaseModel(
const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory>& _rxFactory, const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory>& _rxFactory,
const ::rtl::OUString& rUnoControlModelName, const ::rtl::OUString& rUnoControlModelName,
const ::rtl::OUString& rDefault ); const ::rtl::OUString& rDefault,
const sal_Bool _bSetDelegator = sal_True);
// ::com::sun::star::io::XPersistObject // ::com::sun::star::io::XPersistObject
virtual void SAL_CALL write(const ::com::sun::star::uno::Reference< ::com::sun::star::io::XObjectOutputStream>& _rxOutStream); virtual void SAL_CALL write(const ::com::sun::star::uno::Reference< ::com::sun::star::io::XObjectOutputStream>& _rxOutStream);