summaryrefslogtreecommitdiff
path: root/forms/source/component/EditBase.cxx
diff options
context:
space:
mode:
authorFrank Schönheit <fs@openoffice.org>2001-05-31 13:07:19 +0000
committerFrank Schönheit <fs@openoffice.org>2001-05-31 13:07:19 +0000
commit478b93cc4e74bc57d2b4fb02ff2793ed9ca1d6a8 (patch)
tree960856eeb7b354334e0b5749c918869748dc23a9 /forms/source/component/EditBase.cxx
parent7efee5a7c05b2da0ed60e9c2ec7d262f4e63b741 (diff)
#87149# forward the _bSetDelegator ctor param to the base class
Diffstat (limited to 'forms/source/component/EditBase.cxx')
-rw-r--r--forms/source/component/EditBase.cxx9
1 files changed, 5 insertions, 4 deletions
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<XMultiServiceFactory>& _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)