diff options
author | Arnaud Versini <arnaud.versini@gmail.com> | 2014-03-02 16:08:50 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-03 09:19:11 -0600 |
commit | 0feaf45541ab82a3e1d8e644380734cb85152446 (patch) | |
tree | 7f6109fe6e8084d376b0621a5ea005913868e2fd /svtools/source/table | |
parent | ff71f4e55c32f903fc4f988cc3e726d0c691841e (diff) |
SVTOOLS : Remove usage of DBG_CTOR and DBG_DTOR.
Valgrind is capable of detecting such bugs. No need for extra macros.
Change-Id: I83e39d69deaf2aa1c5ca455c92d070a2d33def3f
Reviewed-on: https://gerrit.libreoffice.org/8421
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svtools/source/table')
-rw-r--r-- | svtools/source/table/tablecontrol_impl.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/svtools/source/table/tablecontrol_impl.cxx b/svtools/source/table/tablecontrol_impl.cxx index 3b6af6348816..4565a1eafe61 100644 --- a/svtools/source/table/tablecontrol_impl.cxx +++ b/svtools/source/table/tablecontrol_impl.cxx @@ -235,7 +235,6 @@ namespace svt { namespace table //= TableControl_Impl - DBG_NAME( TableControl_Impl ) #ifdef DBG_UTIL @@ -424,7 +423,6 @@ namespace svt { namespace table #endif #define DBG_CHECK_ME() \ - DBG_CHKTHIS( TableControl_Impl, TableControl_Impl_checkInvariants ) TableControl_Impl::TableControl_Impl( TableControl& _rAntiImpl ) @@ -455,7 +453,6 @@ namespace svt { namespace table ,m_nRequiredInvariants ( INV_SCROLL_POSITION ) #endif { - DBG_CTOR( TableControl_Impl, TableControl_Impl_checkInvariants ); m_pSelEngine = new SelectionEngine( m_pDataWindow.get(), m_pTableFunctionSet ); m_pSelEngine->SetSelectionMode(SINGLE_SELECTION); m_pDataWindow->SetPosPixel( Point( 0, 0 ) ); @@ -465,7 +462,6 @@ namespace svt { namespace table TableControl_Impl::~TableControl_Impl() { - DBG_DTOR( TableControl_Impl, TableControl_Impl_checkInvariants ); DELETEZ( m_pVScroll ); DELETEZ( m_pHScroll ); |