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/File.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/File.cxx')
-rw-r--r-- | forms/source/component/File.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/forms/source/component/File.cxx b/forms/source/component/File.cxx index 45445afd8d6b..d8444ee35b0d 100644 --- a/forms/source/component/File.cxx +++ b/forms/source/component/File.cxx @@ -83,13 +83,11 @@ StringSequence OFileControlModel::getSupportedServiceNames() throw(RuntimeExcep } //------------------------------------------------------------------ -DBG_NAME( OFileControlModel ) //------------------------------------------------------------------ OFileControlModel::OFileControlModel(const Reference<XComponentContext>& _rxFactory) :OControlModel(_rxFactory, VCL_CONTROLMODEL_FILECONTROL) ,m_aResetListeners(m_aMutex) { - DBG_CTOR( OFileControlModel, NULL ); m_nClassId = FormComponentType::FILECONTROL; } @@ -98,7 +96,6 @@ OFileControlModel::OFileControlModel( const OFileControlModel* _pOriginal, const :OControlModel( _pOriginal, _rxFactory ) ,m_aResetListeners( m_aMutex ) { - DBG_CTOR( OFileControlModel, NULL ); m_sDefaultValue = _pOriginal->m_sDefaultValue; } @@ -111,7 +108,6 @@ OFileControlModel::~OFileControlModel() acquire(); dispose(); } - DBG_DTOR( OFileControlModel, NULL ); } //------------------------------------------------------------------------------ |