summaryrefslogtreecommitdiff
path: root/include/svl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-01-24 14:04:07 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-01-24 15:04:59 +0000
commit6a0f957968bab9f72295ad17d5d1b77aecef2d75 (patch)
tree1ffb4157f31948b1c14c285c20edb49d10f5aee4 /include/svl
parent33d91958b4a10692de9f028d2303840e7a848bf2 (diff)
coverity#708952 Non-virtual destructor
Change-Id: I4b09b3d6e11225d616a7a6f84eff6626a2490cd0
Diffstat (limited to 'include/svl')
-rw-r--r--include/svl/undo.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svl/undo.hxx b/include/svl/undo.hxx
index 8da6edf2e977..5c3b29ed37ff 100644
--- a/include/svl/undo.hxx
+++ b/include/svl/undo.hxx
@@ -142,7 +142,7 @@ struct SVL_DLLPUBLIC SfxUndoArray
SfxUndoArray(size_t nMax=0):
nMaxUndoActions(nMax), nCurUndoAction(0),
pFatherUndoArray(0) {}
- ~SfxUndoArray();
+ virtual ~SfxUndoArray();
};
//=========================================================================