summaryrefslogtreecommitdiff
path: root/src/sync/syncmanager.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2011-11-14 17:16:08 +0100
committerAndrea Diamantini <adjam7@gmail.com>2011-12-12 16:40:28 +0100
commit7932ee0fd2e683af8cc1207986504747ccfbc68e (patch)
treec66446b807778be74401bfb649a1b3784379bcf5 /src/sync/syncmanager.h
parentSync feature, first bits (diff)
downloadrekonq-7932ee0fd2e683af8cc1207986504747ccfbc68e.tar.xz
Let the "big sync" work (the one done every minute...)
Diffstat (limited to 'src/sync/syncmanager.h')
-rw-r--r--src/sync/syncmanager.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/sync/syncmanager.h b/src/sync/syncmanager.h
index 3a78191f..c6f8a76a 100644
--- a/src/sync/syncmanager.h
+++ b/src/sync/syncmanager.h
@@ -39,6 +39,7 @@
// Forward Declarations
class KJob;
+class QTimer;
class REKONQ_TESTS_EXPORT SyncManager : public QObject
@@ -55,6 +56,9 @@ public Q_SLOTS:
void sync();
private Q_SLOTS:
+ void loadSettings();
+ void showSettings();
+
void onBookmarksSyncFinished(KJob *);
void onBookmarksStatFinished(KJob *);
@@ -80,6 +84,8 @@ private:
QUrl _remotePasswordsUrl;
KUrl _localPasswordsUrl;
+
+ QTimer *_syncTimer;
};
#endif // SYNC_MANAGER_H