summaryrefslogtreecommitdiff
path: root/extensions/source/propctrlr/submissionhandler.cxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-03-23 10:59:11 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-03-23 10:59:11 +0000
commitf035fdb5c40e8c72dfe1f882046e2f468e94a544 (patch)
tree52cc5fec51bed510bc8b8c5db9a860f52cdda418 /extensions/source/propctrlr/submissionhandler.cxx
parent91db8257ff5eb3c2bac086560b777b32adf9c61f (diff)
INTEGRATION: CWS eforms4 (1.2.16); FILE MERGED
2004/12/10 10:41:04 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/source/propctrlr/submissionhandler.cxx')
-rw-r--r--extensions/source/propctrlr/submissionhandler.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/extensions/source/propctrlr/submissionhandler.cxx b/extensions/source/propctrlr/submissionhandler.cxx
index 6c97ae6edf61..bff2b596f912 100644
--- a/extensions/source/propctrlr/submissionhandler.cxx
+++ b/extensions/source/propctrlr/submissionhandler.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: submissionhandler.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: obo $ $Date: 2004-11-16 12:13:18 $
+ * last change: $Author: vg $ $Date: 2005-03-23 11:58:57 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -330,9 +330,9 @@ namespace pcr
}
//--------------------------------------------------------------------
- void SAL_CALL SubmissionPropertyHandler::updateDependentProperties( PropertyId _nActuatingPropId, const Any& _rNewValue, const Any& _rOldValue, IPropertyBrowserUI* _pUpdater )
+ void SAL_CALL SubmissionPropertyHandler::actuatingPropertyChanged( PropertyId _nActuatingPropId, const Any& _rNewValue, const Any& _rOldValue, IPropertyBrowserUI* _pUpdater, bool )
{
- OSL_ENSURE( m_pHelper.get(), "SubmissionPropertyHandler::updateDependentProperties: we have no ActuatingProperties!" );
+ OSL_ENSURE( m_pHelper.get(), "SubmissionPropertyHandler::actuatingPropertyChanged: we have no ActuatingProperties!" );
if ( !m_pHelper.get() )
return;
@@ -347,7 +347,7 @@ namespace pcr
break;
default:
- OSL_ENSURE( sal_False, "SubmissionPropertyHandler::updateDependentProperties: cannot handle this id!" );
+ OSL_ENSURE( sal_False, "SubmissionPropertyHandler::actuatingPropertyChanged: cannot handle this id!" );
}
}