diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2011-11-22 18:38:16 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-12-12 16:40:29 +0100 |
commit | adce8459b83cd7494dbc4c552c5079dc22e68a54 (patch) | |
tree | cf42b18b0a783a9fe7b5ae0b97eb3c2dba842aad /src/sync/syncwidget.cpp | |
parent | here we are, rekonq ftp remote sync done! (diff) | |
download | rekonq-adce8459b83cd7494dbc4c552c5079dc22e68a54.tar.xz |
Clean out ftp code to easily add in the future new sync implementations
Diffstat (limited to 'src/sync/syncwidget.cpp')
-rw-r--r-- | src/sync/syncwidget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sync/syncwidget.cpp b/src/sync/syncwidget.cpp index a7adfd3d..f1e79da6 100644 --- a/src/sync/syncwidget.cpp +++ b/src/sync/syncwidget.cpp @@ -80,7 +80,7 @@ void SyncWidget::save() ReKonfig::setSyncPath(kcfg_syncPath->text()); ReKonfig::setSyncPort(kcfg_syncPort->value()); - rApp->syncManager()->firstTimeSync(); + rApp->syncManager()->resetSyncer(); } @@ -118,7 +118,7 @@ void SyncWidget::setSyncLabel(const QDateTime &dt) void SyncWidget::syncNow() { - rApp->syncManager()->firstTimeSync(); + rApp->syncManager()->resetSyncer(); // TODO do something in the sync UI... } |