diff options
| author | Peter Penz <[email protected]> | 2006-12-17 11:52:26 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2006-12-17 11:52:26 +0000 |
| commit | c28c72619cef1edaf6ca732d293b321f5ac220e5 (patch) | |
| tree | a53099a9222e3c432e7f52d3623dfcfea8e3f5e5 /src/undomanager.h | |
| parent | 3b4dfa2040c1e970ba6689bd7a874fab5f423e2d (diff) | |
Reanimated cut-, copy- and paste- functionality as preparation for moving to KonqUndoManager.
svn path=/trunk/playground/utils/dolphin/; revision=614325
Diffstat (limited to 'src/undomanager.h')
| -rw-r--r-- | src/undomanager.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/undomanager.h b/src/undomanager.h index c3cfda56e..baed41947 100644 --- a/src/undomanager.h +++ b/src/undomanager.h @@ -21,9 +21,10 @@ #ifndef UNDOMANAGER_H #define UNDOMANAGER_H -#include <qobject.h> +#include <QObject> #include <QPointer> -#include <q3valuelist.h> +#include <QList> + #include <kurl.h> #include <kio/jobclasses.h> @@ -127,7 +128,7 @@ public slots: /** * Performs a redo operation on the last command where an undo * operation has been applied. - * + * * @param mainwindow The mainwindow where to show progress */ void redo(DolphinMainWindow* mainwindow); @@ -182,7 +183,7 @@ private: bool m_recordMacro; int m_historyIndex; int m_macroCounter; - Q3ValueList<DolphinCommand> m_history; + QList<DolphinCommand> m_history; /** * Dependent from the current history index \a m_historyIndex |
