summaryrefslogtreecommitdiffstats
path: root/forms/source/component/CheckBox.cxx
diff options
context:
space:
mode:
authorArnaud Versini <arnaud.versini@gmail.com>2014-01-19 17:15:51 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-01-21 16:26:50 +0000
commit5a73cceee597b56c568d061ead3a0b3269f2977b (patch)
tree4f1ca412758484b4f4b365a62339d2d966ef5a34 /forms/source/component/CheckBox.cxx
parentREPORTDESIGN : Remove usage of DBG_CTOR and DBG_DTOR. (diff)
downloadcore-5a73cceee597b56c568d061ead3a0b3269f2977b.tar.gz
core-5a73cceee597b56c568d061ead3a0b3269f2977b.zip
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/CheckBox.cxx')
-rw-r--r--forms/source/component/CheckBox.cxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/forms/source/component/CheckBox.cxx b/forms/source/component/CheckBox.cxx
index 04a5399d23da..a6316d963c06 100644
--- a/forms/source/component/CheckBox.cxx
+++ b/forms/source/component/CheckBox.cxx
@@ -79,13 +79,11 @@ InterfaceRef SAL_CALL OCheckBoxModel_CreateInstance(const Reference<XMultiServic
}
//------------------------------------------------------------------
-DBG_NAME( OCheckBoxModel )
//------------------------------------------------------------------
OCheckBoxModel::OCheckBoxModel(const Reference<XComponentContext>& _rxFactory)
:OReferenceValueComponent( _rxFactory, VCL_CONTROLMODEL_CHECKBOX, FRM_SUN_CONTROL_CHECKBOX, sal_True )
// use the old control name for compytibility reasons
{
- DBG_CTOR( OCheckBoxModel, NULL );
m_nClassId = FormComponentType::CHECKBOX;
initValueProperty( PROPERTY_STATE, PROPERTY_ID_STATE );
@@ -95,13 +93,11 @@ OCheckBoxModel::OCheckBoxModel(const Reference<XComponentContext>& _rxFactory)
OCheckBoxModel::OCheckBoxModel( const OCheckBoxModel* _pOriginal, const Reference<XComponentContext>& _rxFactory )
:OReferenceValueComponent( _pOriginal, _rxFactory )
{
- DBG_CTOR( OCheckBoxModel, NULL );
}
//------------------------------------------------------------------------------
OCheckBoxModel::~OCheckBoxModel()
{
- DBG_DTOR( OCheckBoxModel, NULL );
}
//------------------------------------------------------------------------------