From d205ff49be10159d1766c2d06182c02255497def Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 28 Mar 2014 16:05:19 +0100 Subject: Remove remaining DBG_CTOR etc. remnants from svl Change-Id: Ib0a4bd4f3d056c39156bfcfb0bd28c62f2f530b2 --- svl/source/undo/undo.cxx | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'svl/source/undo/undo.cxx') diff --git a/svl/source/undo/undo.cxx b/svl/source/undo/undo.cxx index fd51d9048479..aaa7230038f5 100644 --- a/svl/source/undo/undo.cxx +++ b/svl/source/undo/undo.cxx @@ -32,11 +32,6 @@ using ::com::sun::star::uno::Exception; -// STATIC DATA ----------------------------------------------------------- - -DBG_NAME(SfxUndoAction) - - TYPEINIT0(SfxUndoAction); TYPEINIT0(SfxListUndoAction); TYPEINIT0(SfxLinkUndoAction); @@ -61,8 +56,6 @@ void SfxUndoAction::SetLinkToSfxLinkUndoAction(SfxLinkUndoAction* pSfxLinkUndoAc SfxUndoAction::~SfxUndoAction() { - DBG_DTOR(SfxUndoAction, 0); - if(mpSfxLinkUndoAction) { mpSfxLinkUndoAction->LinkedSfxUndoActionDestructed(*this); @@ -74,20 +67,17 @@ SfxUndoAction::~SfxUndoAction() SfxUndoAction::SfxUndoAction() : mpSfxLinkUndoAction(0) { - DBG_CTOR(SfxUndoAction, 0); } bool SfxUndoAction::Merge( SfxUndoAction * ) { - DBG_CHKTHIS(SfxUndoAction, 0); return false; } OUString SfxUndoAction::GetComment() const { - DBG_CHKTHIS(SfxUndoAction, 0); return OUString(); } @@ -95,14 +85,12 @@ OUString SfxUndoAction::GetComment() const sal_uInt16 SfxUndoAction::GetId() const { - DBG_CHKTHIS(SfxUndoAction, 0); return 0; } OUString SfxUndoAction::GetRepeatComment(SfxRepeatTarget&) const { - DBG_CHKTHIS(SfxUndoAction, 0); return GetComment(); } -- cgit