From 94bfa035c35c9c0af8a0bf3498e16be3beef2b8f Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Tue, 2 Jan 2024 15:47:22 +0800 Subject: [PATCH] Define NSDictionary types in _clientCommServices Signed-off-by: Claudio Cambra --- src/gui/macOS/fileproviderxpc.h | 4 +++- src/gui/macOS/fileproviderxpc_mac.mm | 2 -- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui/macOS/fileproviderxpc.h b/src/gui/macOS/fileproviderxpc.h index 48eeb7c48c..9fb9cf8e86 100644 --- a/src/gui/macOS/fileproviderxpc.h +++ b/src/gui/macOS/fileproviderxpc.h @@ -18,6 +18,8 @@ #import +#import "ClientCommunicationProtocol.h" + namespace OCC { namespace Mac { @@ -38,7 +40,7 @@ private: void setupConnections(); void processConnections(NSArray *const services); - NSDictionary *_clientCommServices; + NSDictionary *_clientCommServices; }; } diff --git a/src/gui/macOS/fileproviderxpc_mac.mm b/src/gui/macOS/fileproviderxpc_mac.mm index f28d2235d7..025feb25ff 100644 --- a/src/gui/macOS/fileproviderxpc_mac.mm +++ b/src/gui/macOS/fileproviderxpc_mac.mm @@ -19,8 +19,6 @@ #include "gui/accountmanager.h" #include "gui/macOS/fileproviderxpc_mac_utils.h" -#import "ClientCommunicationProtocol.h" - namespace OCC { namespace Mac {