From 4ee680939d649f4458c9046d40bdde2f733384f7 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Sun, 7 Dec 2014 12:08:53 +0200 Subject: Work around error: member access into incomplete type 'MarkedUndoAction' Change-Id: Ie5c8bc2136b56bd7bb64055c0e84c0559dd9aad2 --- sd/source/ui/view/outlview.cxx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sd') 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; -- cgit