diff options
author | Oliver Bolte <obo@openoffice.org> | 2007-03-09 12:31:41 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2007-03-09 12:31:41 +0000 |
commit | 0f1ae0ebbd432ede911e536adb24677d27379dbd (patch) | |
tree | ad49071487c94c233c006ecf6e43bcbc51220c56 | |
parent | 0bbea15a988645c81cad967c791accf6c0cab72c (diff) |
INTEGRATION: CWS hb02 (1.10.164); FILE MERGED
2007/02/01 12:09:41 fs 1.10.164.2: #i74051# split describeFixedProperties in describeFixedProperties and describeAggregateProperties
2007/01/31 10:55:30 fs 1.10.164.1: changed handling of properties in the course of #i74051#
-rw-r--r-- | forms/source/component/RadioButton.hxx | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/forms/source/component/RadioButton.hxx b/forms/source/component/RadioButton.hxx index 0b00cc2ca..463895695 100644 --- a/forms/source/component/RadioButton.hxx +++ b/forms/source/component/RadioButton.hxx @@ -4,9 +4,9 @@ * * $RCSfile: RadioButton.hxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: rt $ $Date: 2005-09-08 22:46:48 $ + * last change: $Author: obo $ $Date: 2007-03-09 13:31:41 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -48,7 +48,6 @@ namespace frm // ORadioButtonModel //================================================================== class ORadioButtonModel :public OReferenceValueComponent - ,public ::comphelper::OAggregationArrayUsageHelper< ORadioButtonModel > { public: DECLARE_DEFAULT_LEAF_XTOR( ORadioButtonModel ); @@ -61,10 +60,6 @@ public: virtual void SAL_CALL setFastPropertyValue_NoBroadcast( sal_Int32 nHandle, const ::com::sun::star::uno::Any& rValue ) throw (::com::sun::star::uno::Exception); - // XPropertySet - virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo> SAL_CALL getPropertySetInfo() throw(::com::sun::star::uno::RuntimeException); - virtual cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper(); - // XPersistObject virtual ::rtl::OUString SAL_CALL getServiceName() throw(::com::sun::star::uno::RuntimeException); virtual void SAL_CALL @@ -75,12 +70,10 @@ public: // OPropertyChangeListener virtual void _propertyChanged(const ::com::sun::star::beans::PropertyChangeEvent& evt) throw(::com::sun::star::uno::RuntimeException); - // OAggregationArrayUsageHelper - virtual void fillProperties( - ::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property >& /* [out] */ _rProps, - ::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property >& /* [out] */ _rAggregateProps - ) const; - IMPLEMENT_INFO_SERVICE() + // OControlModel's property handling + virtual void describeFixedProperties( + ::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property >& /* [out] */ _rProps + ) const; protected: // OBoundControlModel overridables |