summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/svx/svdundo.hxx2
-rw-r--r--svx/source/svdraw/svdundo.cxx4
2 files changed, 6 insertions, 0 deletions
diff --git a/include/svx/svdundo.hxx b/include/svx/svdundo.hxx
index a3766b735b82..ab2c8a5d0b60 100644
--- a/include/svx/svdundo.hxx
+++ b/include/svx/svdundo.hxx
@@ -274,6 +274,8 @@ public:
virtual void Undo();
virtual void Redo();
+
+ virtual ~SdrUndoRemoveObj();
};
/**
diff --git a/svx/source/svdraw/svdundo.cxx b/svx/source/svdraw/svdundo.cxx
index caf3ba46e1bd..5ec3adaebef9 100644
--- a/svx/source/svdraw/svdundo.cxx
+++ b/svx/source/svdraw/svdundo.cxx
@@ -836,6 +836,10 @@ void SdrUndoRemoveObj::Redo()
ImpShowPageOfThisObject();
}
+SdrUndoRemoveObj::~SdrUndoRemoveObj()
+{
+}
+
////////////////////////////////////////////////////////////////////////////////////////////////////
void SdrUndoInsertObj::Undo()