diff options
author | Oliver Bolte <obo@openoffice.org> | 2007-03-09 12:22:22 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2007-03-09 12:22:22 +0000 |
commit | 44b5c4a5c878c45aa5a9cec5bc7364b9edf2a24c (patch) | |
tree | a74ef6b5ed47e90e806bce6f7b2f74424e8b7b0b | |
parent | 334d07b096eeadd963ed49241c9b4374e367a7ed (diff) |
INTEGRATION: CWS hb02 (1.15.52); FILE MERGED
2007/02/01 12:09:36 fs 1.15.52.2: #i74051# split describeFixedProperties in describeFixedProperties and describeAggregateProperties
2007/01/31 10:55:24 fs 1.15.52.1: changed handling of properties in the course of #i74051#
-rw-r--r-- | forms/source/component/Currency.cxx | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/forms/source/component/Currency.cxx b/forms/source/component/Currency.cxx index 83c2d74e2eab..c0bbf278bfb0 100644 --- a/forms/source/component/Currency.cxx +++ b/forms/source/component/Currency.cxx @@ -4,9 +4,9 @@ * * $RCSfile: Currency.cxx,v $ * - * $Revision: 1.15 $ + * $Revision: 1.16 $ * - * last change: $Author: obo $ $Date: 2006-09-16 23:47:46 $ + * last change: $Author: obo $ $Date: 2007-03-09 13:22:22 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -213,16 +213,7 @@ StringSequence SAL_CALL OCurrencyModel::getSupportedServiceNames() throw() } //------------------------------------------------------------------------------ -Reference<XPropertySetInfo> SAL_CALL OCurrencyModel::getPropertySetInfo() throw( RuntimeException ) -{ - Reference<XPropertySetInfo> xInfo( createPropertySetInfo( getInfoHelper() ) ); - return xInfo; -} - -//------------------------------------------------------------------------------ -void OCurrencyModel::fillProperties( - Sequence< Property >& _rProps, - Sequence< Property >& _rAggregateProps ) const +void OCurrencyModel::describeFixedProperties( Sequence< Property >& _rProps ) const { BEGIN_DESCRIBE_PROPERTIES( 2, OEditBaseModel ) // Value auf transient setzen @@ -234,12 +225,6 @@ void OCurrencyModel::fillProperties( } //------------------------------------------------------------------------------ -::cppu::IPropertyArrayHelper& OCurrencyModel::getInfoHelper() -{ - return *const_cast<OCurrencyModel*>(this)->getArrayHelper(); -} - -//------------------------------------------------------------------------------ ::rtl::OUString SAL_CALL OCurrencyModel::getServiceName() throw ( ::com::sun::star::uno::RuntimeException) { return FRM_COMPONENT_CURRENCYFIELD; // old (non-sun) name for compatibility ! |