diff options
author | Arnaud Versini <arnaud.versini@gmail.com> | 2014-01-19 17:15:51 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-01-21 16:26:50 +0000 |
commit | 5a73cceee597b56c568d061ead3a0b3269f2977b (patch) | |
tree | 4f1ca412758484b4f4b365a62339d2d966ef5a34 /forms/source/component/spinbutton.cxx | |
parent | d3410004066070df4cf1944e241e29cd88f1eef3 (diff) |
FORMS : Remove usage of DBG_CTOR and DBG_DTOR.
Valgrind is capable of detecting such bugs. No need for extra macros.
Change-Id: Ida618d6ac383c65f1c09212a7b6aa5ee228677db
Reviewed-on: https://gerrit.libreoffice.org/7534
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'forms/source/component/spinbutton.cxx')
-rw-r--r-- | forms/source/component/spinbutton.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/forms/source/component/spinbutton.cxx b/forms/source/component/spinbutton.cxx index cd27c96293cf..f7103af924e2 100644 --- a/forms/source/component/spinbutton.cxx +++ b/forms/source/component/spinbutton.cxx @@ -54,13 +54,11 @@ namespace frm //= OSpinButtonModel //==================================================================== //-------------------------------------------------------------------- - DBG_NAME( OSpinButtonModel ) //-------------------------------------------------------------------- OSpinButtonModel::OSpinButtonModel( const Reference<XComponentContext>& _rxFactory ) :OBoundControlModel( _rxFactory, VCL_CONTROLMODEL_SPINBUTTON, VCL_CONTROL_SPINBUTTON, sal_True, sal_True, sal_False ) ,m_nDefaultSpinValue( 0 ) { - DBG_CTOR( OSpinButtonModel, NULL ); m_nClassId = FormComponentType::SPINBUTTON; initValueProperty( PROPERTY_SPIN_VALUE, PROPERTY_ID_SPIN_VALUE ); @@ -70,14 +68,12 @@ namespace frm OSpinButtonModel::OSpinButtonModel( const OSpinButtonModel* _pOriginal, const Reference< XComponentContext >& _rxFactory ) :OBoundControlModel( _pOriginal, _rxFactory ) { - DBG_CTOR( OSpinButtonModel, NULL ); m_nDefaultSpinValue = _pOriginal->m_nDefaultSpinValue; } //-------------------------------------------------------------------- OSpinButtonModel::~OSpinButtonModel( ) { - DBG_DTOR( OSpinButtonModel, NULL ); } //-------------------------------------------------------------------- |