summaryrefslogtreecommitdiff
path: root/editeng/source/outliner/outlundo.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'editeng/source/outliner/outlundo.cxx')
-rw-r--r--editeng/source/outliner/outlundo.cxx20
1 files changed, 0 insertions, 20 deletions
diff --git a/editeng/source/outliner/outlundo.cxx b/editeng/source/outliner/outlundo.cxx
index e0fb6e33d6d8..1803dd03fd09 100644
--- a/editeng/source/outliner/outlundo.cxx
+++ b/editeng/source/outliner/outlundo.cxx
@@ -118,12 +118,6 @@ void OutlinerUndoChangeDepth::Redo()
GetOutliner()->ImplInitDepth( mnPara, mnNewDepth, false );
}
-void OutlinerUndoChangeDepth::Repeat()
-{
- OSL_FAIL( "Repeat not implemented!" );
-}
-
-
OutlinerUndoCheckPara::OutlinerUndoCheckPara( Outliner* pOutliner, sal_Int32 nPara )
: OutlinerUndoBase( OLUNDO_DEPTH, pOutliner )
{
@@ -144,12 +138,6 @@ void OutlinerUndoCheckPara::Redo()
GetOutliner()->ImplCalcBulletText( mnPara, false, false );
}
-void OutlinerUndoCheckPara::Repeat()
-{
- OSL_FAIL( "Repeat not implemented!" );
-}
-
-
OLUndoExpand::OLUndoExpand(Outliner* pOut, sal_uInt16 _nId )
: EditUndo( _nId, 0 )
{
@@ -197,22 +185,14 @@ void OLUndoExpand::Restore( bool bUndo )
}
}
-
void OLUndoExpand::Undo()
{
Restore( true );
}
-
void OLUndoExpand::Redo()
{
Restore( false );
}
-
-void OLUndoExpand::Repeat()
-{
- OSL_FAIL("Not implemented");
-}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */