Rename FileProviderDomainManager::Private to FileProviderDomainManager::MacImplementation

Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
This commit is contained in:
Claudio Cambra 2023-03-22 14:25:15 +01:00
parent e245ec0d2a
commit 2c3fa71405
No known key found for this signature in database
GPG key ID: C839200C384636B0
2 changed files with 6 additions and 6 deletions

View file

@ -53,8 +53,8 @@ private:
// Starts regular enumerator signalling if no push notifications available
QTimer _enumeratorSignallingTimer;
class Private;
std::unique_ptr<Private> d;
class MacImplementation;
std::unique_ptr<MacImplementation> d;
};
} // namespace Mac

View file

@ -82,11 +82,11 @@ Q_LOGGING_CATEGORY(lcMacFileProviderDomainManager, "nextcloud.gui.macfileprovide
namespace Mac {
class API_AVAILABLE(macos(11.0)) FileProviderDomainManager::Private {
class API_AVAILABLE(macos(11.0)) FileProviderDomainManager::MacImplementation {
public:
Private() = default;
~Private() = default;
MacImplementation() = default;
~MacImplementation() = default;
void findExistingFileProviderDomains()
{
@ -392,7 +392,7 @@ FileProviderDomainManager::FileProviderDomainManager(QObject * const parent)
: QObject(parent)
{
if (@available(macOS 11.0, *)) {
d.reset(new FileProviderDomainManager::Private());
d.reset(new FileProviderDomainManager::MacImplementation());
ConfigFile cfg;
std::chrono::milliseconds polltime = cfg.remotePollInterval();