diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-03-09 11:29:33 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-03-09 11:29:33 +0000 |
commit | 8438689a758528640c2c3dbe9a021c21461849cf (patch) | |
tree | 8a38b98c2227fca8d6aee69d55d756260ccb5459 /toolkit/source/awt/vclxspinbutton.cxx | |
parent | 2602c5f90ee76cfb9fc35f72f411b922e2c7c5bc (diff) |
INTEGRATION: CWS ooo20040225 (1.2.30); FILE MERGED
2004/02/12 16:56:14 pjanik 1.2.30.1: #i24980#: Fix compilation problem.
Diffstat (limited to 'toolkit/source/awt/vclxspinbutton.cxx')
-rw-r--r-- | toolkit/source/awt/vclxspinbutton.cxx | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/toolkit/source/awt/vclxspinbutton.cxx b/toolkit/source/awt/vclxspinbutton.cxx index 1f22297502cc..b39c05d031a7 100644 --- a/toolkit/source/awt/vclxspinbutton.cxx +++ b/toolkit/source/awt/vclxspinbutton.cxx @@ -2,9 +2,9 @@ * * $RCSfile: vclxspinbutton.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: kz $ $Date: 2003-12-11 11:56:28 $ + * last change: $Author: hr $ $Date: 2004-03-09 12:29:33 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -190,7 +190,7 @@ namespace toolkit //-------------------------------------------------------------------- void SAL_CALL VCLXSpinButton::setValue( sal_Int32 n ) throw (RuntimeException) { - lcl_setSpinButtonValue( GetMutex(), GetWindow(), SpinButton::SetValue, n ); + lcl_setSpinButtonValue( GetMutex(), GetWindow(), &SpinButton::SetValue, n ); } //-------------------------------------------------------------------- @@ -206,43 +206,43 @@ namespace toolkit //-------------------------------------------------------------------- sal_Int32 SAL_CALL VCLXSpinButton::getValue( ) throw (RuntimeException) { - return lcl_getSpinButtonValue( GetMutex(), GetWindow(), SpinButton::GetValue ); + return lcl_getSpinButtonValue( GetMutex(), GetWindow(), &SpinButton::GetValue ); } //-------------------------------------------------------------------- void SAL_CALL VCLXSpinButton::setMinimum( sal_Int32 minValue ) throw (RuntimeException) { - lcl_setSpinButtonValue( GetMutex(), GetWindow(), SpinButton::SetRangeMin, minValue ); + lcl_setSpinButtonValue( GetMutex(), GetWindow(), &SpinButton::SetRangeMin, minValue ); } //-------------------------------------------------------------------- void SAL_CALL VCLXSpinButton::setMaximum( sal_Int32 maxValue ) throw (RuntimeException) { - lcl_setSpinButtonValue( GetMutex(), GetWindow(), SpinButton::SetRangeMax, maxValue ); + lcl_setSpinButtonValue( GetMutex(), GetWindow(), &SpinButton::SetRangeMax, maxValue ); } //-------------------------------------------------------------------- sal_Int32 SAL_CALL VCLXSpinButton::getMinimum( ) throw (RuntimeException) { - return lcl_getSpinButtonValue( GetMutex(), GetWindow(), SpinButton::GetRangeMin ); + return lcl_getSpinButtonValue( GetMutex(), GetWindow(), &SpinButton::GetRangeMin ); } //-------------------------------------------------------------------- sal_Int32 SAL_CALL VCLXSpinButton::getMaximum( ) throw (RuntimeException) { - return lcl_getSpinButtonValue( GetMutex(), GetWindow(), SpinButton::GetRangeMax ); + return lcl_getSpinButtonValue( GetMutex(), GetWindow(), &SpinButton::GetRangeMax ); } //-------------------------------------------------------------------- void SAL_CALL VCLXSpinButton::setSpinIncrement( sal_Int32 spinIncrement ) throw (RuntimeException) { - lcl_setSpinButtonValue( GetMutex(), GetWindow(), SpinButton::SetValueStep, spinIncrement ); + lcl_setSpinButtonValue( GetMutex(), GetWindow(), &SpinButton::SetValueStep, spinIncrement ); } //-------------------------------------------------------------------- sal_Int32 SAL_CALL VCLXSpinButton::getSpinIncrement( ) throw (RuntimeException) { - return lcl_getSpinButtonValue( GetMutex(), GetWindow(), SpinButton::GetValueStep ); + return lcl_getSpinButtonValue( GetMutex(), GetWindow(), &SpinButton::GetValueStep ); } //-------------------------------------------------------------------- |