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:
authorFabian Müller <fmueller@owncloud.com>2022-03-22 17:06:35 +0300
committerHannah von Reth <vonreth@kde.org>2022-03-24 13:32:50 +0300
commitb22989d75109e6e1282bc42b70968ef3dee6f750 (patch)
tree6edbce4cb2d4e4837f094566c4f903559e67e398 /src/gui/ocwizard_deprecated.h
parentcf93da2e4de381ca9470fd3a2fb0db330129c7b2 (diff)
Rewrite wizard from scratch
Diffstat (limited to 'src/gui/ocwizard_deprecated.h')
-rw-r--r--src/gui/ocwizard_deprecated.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/gui/ocwizard_deprecated.h b/src/gui/ocwizard_deprecated.h
new file mode 100644
index 000000000..f94d4a0b9
--- /dev/null
+++ b/src/gui/ocwizard_deprecated.h
@@ -0,0 +1,31 @@
+#include <QObject>
+
+/*
+ * These functions are all deprecated and were previously located within the wizard class.
+ */
+
+namespace OCC::OwncloudWizard {
+
+[[deprecated]] static inline void askExperimentalVirtualFilesFeature(QObject *, std::function<void(bool)>)
+{
+ qWarning() << "Currently unsupported function askExperimentalVirtualFilesFeature called";
+}
+
+[[deprecated]] static inline bool useVirtualFileSync()
+{
+ qWarning() << "Currently unsupported function useVirtualFileSync called";
+ return false;
+}
+
+[[deprecated]] static inline QList<QString> selectiveSyncBlacklist()
+{
+ qWarning() << "Currently unsupported function selectiveSyncBlacklist called";
+ return {};
+}
+
+[[deprecated]] static inline bool isConfirmBigFolderChecked()
+{
+ qWarning() << "Currently unsupported function isConfirmBigFolderChecked called";
+ return false;
+}
+}