summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-03-23 10:55:43 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-03-23 10:55:43 +0000
commit903d5832522f4b5f925d4b6f9339111d480ff216 (patch)
tree439f036cbfb3e744fd6bdbf3a4e9fb8f6c4798c8 /extensions
parent9a4770d7d06667b8e1fbae62fe50397fed2d745d (diff)
INTEGRATION: CWS eforms4 (1.2.16); FILE MERGED
2004/12/10 10:41:00 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/editpropertyhandler.cxx8
-rw-r--r--extensions/source/propctrlr/editpropertyhandler.hxx6
-rw-r--r--extensions/source/propctrlr/eformspropertyhandler.cxx12
-rw-r--r--extensions/source/propctrlr/eformspropertyhandler.hxx6
4 files changed, 16 insertions, 16 deletions
diff --git a/extensions/source/propctrlr/editpropertyhandler.cxx b/extensions/source/propctrlr/editpropertyhandler.cxx
index 9885238e21a0..95e1813492e2 100644
--- a/extensions/source/propctrlr/editpropertyhandler.cxx
+++ b/extensions/source/propctrlr/editpropertyhandler.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: editpropertyhandler.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: obo $ $Date: 2004-11-16 12:04:18 $
+ * last change: $Author: vg $ $Date: 2005-03-23 11:54:53 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -282,7 +282,7 @@ namespace pcr
}
//--------------------------------------------------------------------
- void SAL_CALL EditPropertyHandler::updateDependentProperties( PropertyId _nActuatingPropId, const Any& _rNewValue, const Any& _rOldValue, IPropertyBrowserUI* _pUpdater )
+ void SAL_CALL EditPropertyHandler::actuatingPropertyChanged( PropertyId _nActuatingPropId, const Any& _rNewValue, const Any& _rOldValue, IPropertyBrowserUI* _pUpdater, bool )
{
switch ( _nActuatingPropId )
{
@@ -317,7 +317,7 @@ namespace pcr
break;
default:
- OSL_ENSURE( sal_False, "EditPropertyHandler::updateDependentProperties: cannot handle this id!" );
+ OSL_ENSURE( sal_False, "EditPropertyHandler::actuatingPropertyChanged: cannot handle this id!" );
}
}
diff --git a/extensions/source/propctrlr/editpropertyhandler.hxx b/extensions/source/propctrlr/editpropertyhandler.hxx
index 53b852d44425..fe3731eb1e52 100644
--- a/extensions/source/propctrlr/editpropertyhandler.hxx
+++ b/extensions/source/propctrlr/editpropertyhandler.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: editpropertyhandler.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: obo $ $Date: 2004-11-16 12:04:29 $
+ * last change: $Author: vg $ $Date: 2005-03-23 11:55:13 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -108,7 +108,7 @@ namespace pcr
SAL_CALL getSupersededProperties( ) const;
virtual ::std::vector< ::rtl::OUString >
SAL_CALL getActuatingProperties( ) const;
- virtual void SAL_CALL updateDependentProperties( PropertyId _nActuatingPropId, const ::com::sun::star::uno::Any& _rNewValue, const ::com::sun::star::uno::Any& _rOldValue, IPropertyBrowserUI* _pUpdater );
+ virtual void SAL_CALL actuatingPropertyChanged( PropertyId _nActuatingPropId, const ::com::sun::star::uno::Any& _rNewValue, const ::com::sun::star::uno::Any& _rOldValue, IPropertyBrowserUI* _pUpdater, bool );
// PropertyHandler overridables
virtual ::std::vector< ::com::sun::star::beans::Property >
diff --git a/extensions/source/propctrlr/eformspropertyhandler.cxx b/extensions/source/propctrlr/eformspropertyhandler.cxx
index 89ec0458e328..7ac0e454526d 100644
--- a/extensions/source/propctrlr/eformspropertyhandler.cxx
+++ b/extensions/source/propctrlr/eformspropertyhandler.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: eformspropertyhandler.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: obo $ $Date: 2004-11-16 12:05:03 $
+ * last change: $Author: vg $ $Date: 2005-03-23 11:55:28 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -515,13 +515,13 @@ namespace pcr
}
//--------------------------------------------------------------------
- void SAL_CALL EFormsPropertyHandler::updateDependentProperties( PropertyId _nActuatingPropId, const Any& _rNewValue, const Any& _rOldValue, IPropertyBrowserUI* _pUpdater )
+ void SAL_CALL EFormsPropertyHandler::actuatingPropertyChanged( PropertyId _nActuatingPropId, const Any& _rNewValue, const Any& _rOldValue, IPropertyBrowserUI* _pUpdater, bool )
{
- OSL_ENSURE( m_pHelper.get(), "EFormsPropertyHandler::updateDependentProperties: we do not have any ActuatingProperties!" );
+ OSL_ENSURE( m_pHelper.get(), "EFormsPropertyHandler::actuatingPropertyChanged: we do not have any ActuatingProperties!" );
if ( !m_pHelper.get() )
return;
- DBG_ASSERT( _pUpdater, "EFormsPropertyHandler::updateDependentProperties: invalid callback!" );
+ DBG_ASSERT( _pUpdater, "EFormsPropertyHandler::actuatingPropertyChanged: invalid callback!" );
if ( !_pUpdater )
return;
@@ -544,7 +544,7 @@ namespace pcr
break;
default:
- DBG_ERROR( "EFormsPropertyHandler::updateDependentProperties: cannot handle this property!" );
+ DBG_ERROR( "EFormsPropertyHandler::actuatingPropertyChanged: cannot handle this property!" );
}
}
diff --git a/extensions/source/propctrlr/eformspropertyhandler.hxx b/extensions/source/propctrlr/eformspropertyhandler.hxx
index cdc2cda5f4d0..b6e289909359 100644
--- a/extensions/source/propctrlr/eformspropertyhandler.hxx
+++ b/extensions/source/propctrlr/eformspropertyhandler.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: eformspropertyhandler.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: obo $ $Date: 2004-11-16 12:05:15 $
+ * last change: $Author: vg $ $Date: 2005-03-23 11:55:43 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -120,7 +120,7 @@ namespace pcr
virtual void SAL_CALL initializePropertyUI( PropertyId _nPropId, IPropertyBrowserUI* _pUpdater );
virtual bool SAL_CALL requestUserInputOnButtonClick( PropertyId _nPropId, bool _bPrimary, ::com::sun::star::uno::Any& _rData );
virtual void SAL_CALL executeButtonClick( PropertyId _nPropId, bool _bPrimary, const ::com::sun::star::uno::Any& _rData, IPropertyBrowserUI* _pUpdater );
- virtual void SAL_CALL updateDependentProperties( PropertyId _nActuatingPropId, const ::com::sun::star::uno::Any& _rNewValue, const ::com::sun::star::uno::Any& _rOldValue, IPropertyBrowserUI* _pUpdater );
+ virtual void SAL_CALL actuatingPropertyChanged( PropertyId _nActuatingPropId, const ::com::sun::star::uno::Any& _rNewValue, const ::com::sun::star::uno::Any& _rOldValue, IPropertyBrowserUI* _pUpdater, bool );
virtual ::com::sun::star::uno::Any SAL_CALL getPropertyValueFromStringRep( PropertyId _nPropId, const ::rtl::OUString& _rStringRep ) const;
virtual ::rtl::OUString SAL_CALL getStringRepFromPropertyValue( PropertyId _nPropId, const ::com::sun::star::uno::Any& _rValue ) const;