summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-03-23 10:57:30 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-03-23 10:57:30 +0000
commit4014c0f2bcd080a836663cb4a9ee34ad9d870a53 (patch)
treed1f3bb3ecc289fca51e6654538864a1683408482 /extensions
parentd3c96cee13157aecaf0367a851850860d32567f2 (diff)
INTEGRATION: CWS eforms4 (1.2.16); FILE MERGED
2005/03/08 18:29:56 dvo 1.2.16.2: RESYNC: (1.2-1.3); FILE MERGED 2004/12/10 10:41:02 fs 1.2.16.1: #i36359# updateDependentProperties renamed to actuatingPropertyChanged, plus added a parameter indicating whether it's a real property change
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/propctrlr/propertycomposer.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/extensions/source/propctrlr/propertycomposer.cxx b/extensions/source/propctrlr/propertycomposer.cxx
index ceea00a55b68..8a6b2c86f8e6 100644
--- a/extensions/source/propctrlr/propertycomposer.cxx
+++ b/extensions/source/propctrlr/propertycomposer.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: propertycomposer.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: vg $ $Date: 2005-02-24 14:42:32 $
+ * last change: $Author: vg $ $Date: 2005-03-23 11:57:30 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -583,7 +583,7 @@ namespace pcr
}
//--------------------------------------------------------------------
- void SAL_CALL PropertyComposer::updateDependentProperties( PropertyId _nActuatingPropId, const Any& _rNewValue, const Any& _rOldValue, IPropertyBrowserUI* _pUpdater )
+ void SAL_CALL PropertyComposer::actuatingPropertyChanged( PropertyId _nActuatingPropId, const Any& _rNewValue, const Any& _rOldValue, IPropertyBrowserUI* _pUpdater, bool _bFirstTimeInit )
{
// ask all handlers which expressed interest in this particular property, and "compose" their
// commands for the UIUpdater
@@ -603,7 +603,7 @@ namespace pcr
{
if ( m_pInfoService->getPropertyId( *loopProps ) == _nActuatingPropId )
{
- (*loop)->updateDependentProperties( _nActuatingPropId, _rNewValue, _rOldValue, &aComposedUpdate );
+ (*loop)->actuatingPropertyChanged( _nActuatingPropId, _rNewValue, _rOldValue, &aComposedUpdate, _bFirstTimeInit );
break;
}
}