diff options
author | adjam <adjam@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-05-06 23:02:43 +0000 |
---|---|---|
committer | adjam <adjam@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-05-06 23:02:43 +0000 |
commit | 601ebdf6c4faea76016cf0d87d50abc260ca1569 (patch) | |
tree | cf601630c933447f2a369f6245f9a04b9a46b08a /src/autosaver.h | |
parent | Typographical and grammar corrections (diff) | |
parent | EBN Krazy fixes. 1st round.. (diff) | |
download | rekonq-601ebdf6c4faea76016cf0d87d50abc260ca1569.tar.xz |
Fixing conflicts merging master
git-svn-id: svn+ssh://svn.kde.org/home/kde/trunk/playground/network/rekonq@964593 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/autosaver.h')
-rw-r--r-- | src/autosaver.h | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/src/autosaver.h b/src/autosaver.h index 8931da13..b486fcb9 100644 --- a/src/autosaver.h +++ b/src/autosaver.h @@ -23,13 +23,22 @@ #ifndef AUTOSAVER_H #define AUTOSAVER_H -#include <QtCore> +// Qt Includes +#include <QtCore/QObject> +#include <QtCore/QBasicTimer> +#include <QtCore/QTime> -/* - 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. - */ +// Forward Declarations +#include <QtCore/QTimerEvent> + +/** + * 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. + * + */ + +>>>>>>> master:src/autosaver.h class AutoSaver : public QObject { Q_OBJECT |