From 6034dc831bcefe66ce6cf4518a158c53d233d570 Mon Sep 17 00:00:00 2001 From: Jens-Heiner Rechtien Date: Mon, 19 Jun 2006 11:56:13 +0000 Subject: INTEGRATION: CWS warnings01 (1.5.68); FILE MERGED 2006/04/07 17:43:58 sb 1.5.68.3: RESYNC: (1.5-1.6); FILE MERGED 2006/03/15 07:55:39 fs 1.5.68.2: #i57457# warning-free code (unxsols4) 2006/03/14 15:20:29 fs 1.5.68.1: #i57457# warning-free code --- forms/source/component/refvaluecomponent.hxx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'forms/source/component/refvaluecomponent.hxx') diff --git a/forms/source/component/refvaluecomponent.hxx b/forms/source/component/refvaluecomponent.hxx index c800504349a9..e50164f933a7 100644 --- a/forms/source/component/refvaluecomponent.hxx +++ b/forms/source/component/refvaluecomponent.hxx @@ -4,9 +4,9 @@ * * $RCSfile: refvaluecomponent.hxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: vg $ $Date: 2006-03-15 09:24:08 $ + * last change: $Author: hr $ $Date: 2006-06-19 12:56:13 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -48,7 +48,7 @@ namespace frm { //........................................................................ - enum state { STATE_NOCHECK, STATE_CHECK, STATE_DONTKNOW }; + enum CheckState { STATE_NOCHECK = 0, STATE_CHECK = 1, STATE_DONTKNOW = 2 }; //==================================================================== //= OReferenceValueComponent @@ -61,7 +61,7 @@ namespace frm // ::rtl::OUString m_sReferenceValue; // the reference value to use for data exchange ::rtl::OUString m_sNoCheckReferenceValue; // the reference value to be exchanged when the control is not checked - sal_Int16 m_nDefaultChecked; // the default check state + CheckState m_eDefaultChecked; // the default check state // sal_Bool m_bSupportSecondRefValue; // do we support the SecondaryRefValue property? @@ -82,8 +82,8 @@ namespace frm const ::rtl::OUString& getNoCheckReferenceValue() const { return m_sNoCheckReferenceValue; } void setNoCheckReferenceValue( const ::rtl::OUString& _rNoCheckRefValue ); - sal_Int16 getDefaultChecked() const { return m_nDefaultChecked; } - void setDefaultChecked( sal_Int16 _nChecked ) { m_nDefaultChecked = _nChecked; } + CheckState getDefaultChecked() const { return m_eDefaultChecked; } + void setDefaultChecked( CheckState _eChecked ) { m_eDefaultChecked = _eChecked; } protected: OReferenceValueComponent( @@ -106,6 +106,7 @@ namespace frm ::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; + using ::cppu::OPropertySetHelper::getFastPropertyValue; // OBoundControlModel overridables virtual void onConnectedExternalValue( ); -- cgit