summaryrefslogtreecommitdiff
path: root/editeng/source/outliner/outliner.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'editeng/source/outliner/outliner.cxx')
-rw-r--r--editeng/source/outliner/outliner.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/editeng/source/outliner/outliner.cxx b/editeng/source/outliner/outliner.cxx
index 6ffaf540edfe..0a63ff17fbb3 100644
--- a/editeng/source/outliner/outliner.cxx
+++ b/editeng/source/outliner/outliner.cxx
@@ -775,7 +775,7 @@ bool Outliner::Expand( Paragraph* pPara )
if( bUndo )
{
InsertUndo( pUndo );
- UndoActionEnd( OLUNDO_EXPAND );
+ UndoActionEnd();
}
return true;
}
@@ -803,7 +803,7 @@ bool Outliner::Collapse( Paragraph* pPara )
if( bUndo )
{
InsertUndo( pUndo );
- UndoActionEnd( OLUNDO_COLLAPSE );
+ UndoActionEnd();
}
return true;
}
@@ -1771,7 +1771,7 @@ IMPL_LINK( Outliner, EndPasteOrDropHdl, PasteOrDropInfos&, rInfos, void )
bPasting = false;
ImpTextPasted( rInfos.nStartPara, rInfos.nEndPara - rInfos.nStartPara + 1 );
maEndPasteOrDropHdl.Call( &rInfos );
- UndoActionEnd( EDITUNDO_DRAGANDDROP );
+ UndoActionEnd();
}
IMPL_LINK( Outliner, EndMovingParagraphsHdl, MoveParagraphsInfo&, rInfos, void )