diff options
Diffstat (limited to 'ksysv/ActionList.cpp')
-rw-r--r-- | ksysv/ActionList.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ksysv/ActionList.cpp b/ksysv/ActionList.cpp index a2e2de8..21caa93 100644 --- a/ksysv/ActionList.cpp +++ b/ksysv/ActionList.cpp @@ -12,7 +12,7 @@ * * ***************************************************************************/ -#include <qapplication.h> +#include <tqapplication.h> #include "ksvdraglist.h" #include "ActionList.h" @@ -147,8 +147,8 @@ void CompoundAction::undo() // ActionList // ////////////////////////////////// -ActionList::ActionList (QObject* parent, const char* name) - : QObject(parent, name) +ActionList::ActionList (TQObject* parent, const char* name) + : TQObject(parent, name) { setAutoDelete(false); } @@ -162,7 +162,7 @@ void ActionList::undoLast() if (!count()) return; - KSVAction* a = QPtrStack<KSVAction>::pop(); + KSVAction* a = TQPtrStack<KSVAction>::pop(); a->undo(); emit undone(); @@ -182,7 +182,7 @@ void ActionList::redoLast() if (!count()) return; - KSVAction* a = QPtrStack<KSVAction>::pop(); + KSVAction* a = TQPtrStack<KSVAction>::pop(); a->redo(); emit undone(); @@ -199,7 +199,7 @@ void ActionList::redoAll() void ActionList::push (KSVAction* a) { - QPtrStack<KSVAction>::push(a); + TQPtrStack<KSVAction>::push(a); if (count() == 1) emit filled(); @@ -208,7 +208,7 @@ void ActionList::push (KSVAction* a) void ActionList::clear() { setAutoDelete (true); - QPtrStack<KSVAction>::clear(); + TQPtrStack<KSVAction>::clear(); setAutoDelete (false); emit empty(); |