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

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaas Freitag <freitag@owncloud.com>2016-09-30 15:08:00 +0300
committerKlaas Freitag <freitag@owncloud.com>2016-09-30 15:08:00 +0300
commit838c072ccc2dd56b56ef256b70179361d8f226d2 (patch)
treec554d9790a4f10518a212c222dc6005bcc5d1da1 /src/gui/folderwizard.h
parented6a708460c6bc9a31a2d903353c4e30ef0695fc (diff)
Folder Setup: Allow to set up more sync connects to the same folder.
One local folder can now be configured as sync target for multiple accounts as long as their url and user differ. Also this patch accepts that the sync folder is behind a symlink. Also this patch fixes a bug that before the user input was taken canonically which was not working for the symlink handling.
Diffstat (limited to 'src/gui/folderwizard.h')
-rw-r--r--src/gui/folderwizard.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/folderwizard.h b/src/gui/folderwizard.h
index bbed262c7..ed0718bb7 100644
--- a/src/gui/folderwizard.h
+++ b/src/gui/folderwizard.h
@@ -49,7 +49,7 @@ class FolderWizardLocalPath : public FormatWarningsWizardPage
{
Q_OBJECT
public:
- FolderWizardLocalPath();
+ FolderWizardLocalPath(AccountPtr account);
~FolderWizardLocalPath();
virtual bool isComplete() const Q_DECL_OVERRIDE;
@@ -63,6 +63,7 @@ protected slots:
private:
Ui_FolderWizardSourcePage _ui;
Folder::Map _folderMap;
+ AccountPtr _account;
};