diff options
author | RĂ¼diger Timm <rt@openoffice.org> | 2004-07-06 12:37:24 +0000 |
---|---|---|
committer | RĂ¼diger Timm <rt@openoffice.org> | 2004-07-06 12:37:24 +0000 |
commit | f57cce4158bcb65c470c04717a39af116d71aa6d (patch) | |
tree | b2246ae4866835a4a5604c51a113dbe4b33fe550 /forms | |
parent | 7e24eb4f9983a94fc8d19ab24e9a68929f02bb93 (diff) |
INTEGRATION: CWS dba13 (1.21.18); FILE MERGED
2004/06/21 12:57:32 fs 1.21.18.1: #i26549#
- createPeer: disable java compatible textChanged notifications
- default control now is the OEditControl, which aggregates a RichTextControl
Diffstat (limited to 'forms')
-rw-r--r-- | forms/source/component/Edit.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/forms/source/component/Edit.cxx b/forms/source/component/Edit.cxx index 5577f353fbd6..a68c6c712cc8 100644 --- a/forms/source/component/Edit.cxx +++ b/forms/source/component/Edit.cxx @@ -2,9 +2,9 @@ * * $RCSfile: Edit.cxx,v $ * - * $Revision: 1.22 $ + * $Revision: 1.23 $ * - * last change: $Author: hjs $ $Date: 2004-06-28 17:08:26 $ + * last change: $Author: rt $ $Date: 2004-07-06 13:37:24 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -162,7 +162,7 @@ Any SAL_CALL OEditControl::queryAggregation(const Type& _rType) throw (RuntimeEx DBG_NAME(OEditControl); //------------------------------------------------------------------------------ OEditControl::OEditControl(const Reference<XMultiServiceFactory>& _rxFactory) - :OBoundControl(_rxFactory, VCL_CONTROL_EDIT) + :OBoundControl( _rxFactory, FRM_SUN_CONTROL_RICHTEXTCONTROL ) ,m_aChangeListeners(m_aMutex) ,m_nKeyEvent( 0 ) { @@ -367,7 +367,7 @@ Sequence<Type> OEditModel::_getTypes() DBG_NAME(OEditModel); //------------------------------------------------------------------ OEditModel::OEditModel(const Reference<XMultiServiceFactory>& _rxFactory) - :OEditBaseModel( _rxFactory, FRM_SUN_COMPONENT_RICHTEXTCONTROL, FRM_SUN_CONTROL_RICHTEXTCONTROL, sal_True, sal_True ) + :OEditBaseModel( _rxFactory, FRM_SUN_COMPONENT_RICHTEXTCONTROL, FRM_SUN_CONTROL_TEXTFIELD, sal_True, sal_True ) ,m_bMaxTextLenModified(sal_False) ,m_nKeyType(NumberFormat::UNDEFINED) ,m_aNullDate(DBTypeConversion::getStandardDate()) |