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

ocwizard_deprecated.h « gui « src - github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 92d59e6ddcd40fb1f40e7ee45e3dea5aa95255da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <QObject>

/*
 * These functions are all deprecated and were previously located within the wizard class.
 */

namespace OCC::OwncloudWizard {

[[deprecated]] static inline bool isConfirmBigFolderChecked()
{
    qWarning() << "Currently unsupported function isConfirmBigFolderChecked called";
    return false;
}
}