summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-12-07 12:08:53 +0200
committerTor Lillqvist <tml@collabora.com>2014-12-07 12:13:23 +0200
commit4ee680939d649f4458c9046d40bdde2f733384f7 (patch)
treeb33baf773873caba08dd64ff6a681df331c4149d /sd
parente6304affe916ed7e310da7b348f7d2ff166718f5 (diff)
Work around error: member access into incomplete type 'MarkedUndoAction'
Change-Id: Ie5c8bc2136b56bd7bb64055c0e84c0559dd9aad2
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/view/outlview.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/sd/source/ui/view/outlview.cxx b/sd/source/ui/view/outlview.cxx
index fa50067bfe32..3057a9ae3f68 100644
--- a/sd/source/ui/view/outlview.cxx
+++ b/sd/source/ui/view/outlview.cxx
@@ -1618,8 +1618,10 @@ void OutlineView::TryToMergeUndoActions()
// the top EditUndo of the previous undo list
// first remove the merged undo action
+#if 0 // breaks --enable-dbgutil build
DBG_ASSERT( pListAction->aUndoActions[nEditPos].pAction == pEditUndo,
"sd::OutlineView::TryToMergeUndoActions(), wrong edit pos!" );
+#endif
pListAction->aUndoActions.Remove(nEditPos);
delete pEditUndo;