diff options
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 |
