summaryrefslogtreecommitdiff
path: root/svl/source/undo/undo.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-28 16:05:19 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-28 16:05:19 +0100
commitd205ff49be10159d1766c2d06182c02255497def (patch)
tree3e2599b02f817af5b92d1759f4df45a0b642f0a2 /svl/source/undo/undo.cxx
parentae00e71afd36f7215669c34e8ea8cafaeed6e468 (diff)
Remove remaining DBG_CTOR etc. remnants from svl
Change-Id: Ib0a4bd4f3d056c39156bfcfb0bd28c62f2f530b2
Diffstat (limited to 'svl/source/undo/undo.cxx')
-rw-r--r--svl/source/undo/undo.cxx12
1 files changed, 0 insertions, 12 deletions
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();
}