Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@woboq.com>2015-04-28 16:13:39 +0300
committerOlivier Goffart <ogoffart@woboq.com>2015-04-28 18:49:05 +0300
commite02f1a222e84a87a24bb9b8564aab0407b363ac6 (patch)
tree021675d9b179a1849b49acadd63d7c9f3962b4c6 /src/gui/selectivesyncdialog.cpp
parente4694a6db8ba0abf2cd0fbc44d051a01b26b35be (diff)
FolderMan: refactor some function to take a Folder* instead of an alias
I want to remove this dependency of alias in the code because we might get rid of it entierly later
Diffstat (limited to 'src/gui/selectivesyncdialog.cpp')
-rw-r--r--src/gui/selectivesyncdialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/selectivesyncdialog.cpp b/src/gui/selectivesyncdialog.cpp
index b50bb33bb..9123b3786 100644
--- a/src/gui/selectivesyncdialog.cpp
+++ b/src/gui/selectivesyncdialog.cpp
@@ -413,7 +413,7 @@ void SelectiveSyncDialog::accept()
_folder->journalDb()->avoidReadFromDbOnNextSync(it);
}
- folderMan->slotScheduleSync(_folder->alias());
+ folderMan->slotScheduleSync(_folder);
}
QDialog::accept();
}