? .vclxspinbutton.cxx.swp Index: vclxspinbutton.cxx =================================================================== RCS file: /cvs/gsl/toolkit/source/awt/vclxspinbutton.cxx,v retrieving revision 1.2 diff -u -r1.2 vclxspinbutton.cxx --- vclxspinbutton.cxx 11 Dec 2003 11:56:28 -0000 1.2 +++ vclxspinbutton.cxx 25 Feb 2004 09:56:58 -0000 @@ -190,7 +190,7 @@ //-------------------------------------------------------------------- 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 @@ //-------------------------------------------------------------------- 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 ); } //--------------------------------------------------------------------