1 #include "undodcopinterface.h"
2 #include "undointerface.h"
4 #include <dcopclient.h>
5 using namespace KTextEditor;
18 uint UndoDCOPInterface::undoInterfaceNumber ()
20 return m_parent->undoInterfaceNumber();
22 void UndoDCOPInterface::undo ()
26 void UndoDCOPInterface::redo ()
30 void UndoDCOPInterface::clearUndo ()
32 m_parent->clearUndo();
34 void UndoDCOPInterface::clearRedo ()
36 m_parent->clearRedo();
38 uint UndoDCOPInterface::undoCount ()
40 return m_parent->undoCount();
42 uint UndoDCOPInterface::redoCount ()
44 return m_parent->redoCount();
46 uint UndoDCOPInterface::undoSteps ()
50 void UndoDCOPInterface::setUndoSteps ( uint steps )
52 m_parent->setUndoSteps(steps);
54 void UndoDCOPInterface::undoChanged ()
56 m_parent->undoChanged();