diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2008-12-06 23:30:36 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2008-12-06 23:30:36 +0100 |
commit | a02a9101fe127211de1fd24f6876b87686309997 (patch) | |
tree | 5ce7921378ef55ac963f2946f6c00f85d0ab7445 /src/autosaver.h | |
parent | ctrl + tab switching: try 5.. (diff) | |
download | rekonq-a02a9101fe127211de1fd24f6876b87686309997.tar.xz |
QTabWidget --> KTabWidget
Diffstat (limited to 'src/autosaver.h')
-rw-r--r-- | src/autosaver.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/autosaver.h b/src/autosaver.h index d8004a9d..70dca53a 100644 --- a/src/autosaver.h +++ b/src/autosaver.h @@ -21,17 +21,15 @@ #ifndef AUTOSAVER_H #define AUTOSAVER_H -#include <QtCore/QObject> -#include <QtCore/QBasicTimer> -#include <QtCore/QTime> +#include <QtCore> /* This class will call the save() slot on the parent object when the parent changes. It will wait several seconds after changed() to combining multiple changes and prevent continuous writing to disk. */ -class AutoSaver : public QObject { - +class AutoSaver : public QObject +{ Q_OBJECT public: |