mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
OwncloudWizard: Move implementation to cpp-file
Signed-off-by: Micke Nordin <kano@sunet.se>
This commit is contained in:
parent
42012a0efb
commit
6ca4ace09f
@ -193,6 +193,11 @@ QStringList OwncloudWizard::selectiveSyncBlacklist() const
|
||||
return _advancedSetupPage->selectiveSyncBlacklist();
|
||||
}
|
||||
|
||||
bool OwncloudWizard::useFlow2() const
|
||||
{
|
||||
return _useFlow2;
|
||||
}
|
||||
|
||||
bool OwncloudWizard::useVirtualFileSync() const
|
||||
{
|
||||
return _advancedSetupPage->useVirtualFileSync();
|
||||
|
||||
@ -65,6 +65,7 @@ public:
|
||||
[[nodiscard]] QString ocUrl() const;
|
||||
[[nodiscard]] QString localFolder() const;
|
||||
[[nodiscard]] QStringList selectiveSyncBlacklist() const;
|
||||
[[nodiscard]] bool useFlow2() const;
|
||||
[[nodiscard]] bool useVirtualFileSync() const;
|
||||
[[nodiscard]] bool isConfirmBigFolderChecked() const;
|
||||
|
||||
@ -88,7 +89,6 @@ public:
|
||||
QSslKey _clientSslKey; // key extracted from pkcs12
|
||||
QSslCertificate _clientSslCertificate; // cert extracted from pkcs12
|
||||
QList<QSslCertificate> _clientSslCaCertificates;
|
||||
bool useFlow2() { return _useFlow2; };
|
||||
|
||||
public slots:
|
||||
void setAuthType(OCC::DetermineAuthTypeJob::AuthType type);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user