summaryrefslogtreecommitdiff
path: root/src/sync/syncmanager.cpp
diff options
context:
space:
mode:
authorSiteshwar Vashisht <siteshwar@gmail.com>2012-05-05 02:45:18 +0530
committerAndrea Diamantini <adjam7@gmail.com>2012-05-28 00:10:30 +0200
commitc7f81741f7be55f2dcc7eaf42ff88707441c9478 (patch)
treeaeef6b679e90618d7ad2c555ddb76dd8999640b7 /src/sync/syncmanager.cpp
parentrekonq 0.9.60 (diff)
downloadrekonq-c7f81741f7be55f2dcc7eaf42ff88707441c9478.tar.xz
First working implementation for syncing with Opera Link, code needs lots of refactoring.
Diffstat (limited to 'src/sync/syncmanager.cpp')
-rw-r--r--src/sync/syncmanager.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/sync/syncmanager.cpp b/src/sync/syncmanager.cpp
index aeb543d0..a4acb80b 100644
--- a/src/sync/syncmanager.cpp
+++ b/src/sync/syncmanager.cpp
@@ -39,6 +39,7 @@
#include "syncassistant.h"
#include "ftpsynchandler.h"
#include "googlesynchandler.h"
+#include "operasynchandler.h"
// KDE Includes
#include <klocalizedstring.h>
@@ -83,6 +84,9 @@ void SyncManager::loadSettings()
case 1:
_syncImplementation = new GoogleSyncHandler(this);
break;
+ case 2:
+ _syncImplementation = new OperaSyncHandler(this);
+ break;
default:
kDebug() << "/dev/null";
return;