diff --git a/src/gui/updater/sparkleupdater_mac.mm b/src/gui/updater/sparkleupdater_mac.mm index f4d010900..4a0be0260 100644 --- a/src/gui/updater/sparkleupdater_mac.mm +++ b/src/gui/updater/sparkleupdater_mac.mm @@ -22,10 +22,10 @@ #include "configfile.h" #include "updater/sparkleupdater.h" -@interface DelegateObject : NSObject +@interface NCSparkleUpdaterDelegate : NSObject - (BOOL)updaterMayCheckForUpdates:(SUUpdater *)bundle; @end -@implementation DelegateObject //(SUUpdaterDelegateInformalProtocol) +@implementation NCSparkleUpdaterDelegate //(SUUpdaterDelegateInformalProtocol) - (BOOL)updaterMayCheckForUpdates:(SUUpdater *)bundle { @@ -86,7 +86,7 @@ public: } SUUpdater* updater; - DelegateObject *delegate; + NCSparkleUpdaterDelegate *delegate; }; // Delete ~/Library//Preferences/com.owncloud.desktopclient.plist to re-test @@ -94,7 +94,7 @@ SparkleUpdater::SparkleUpdater(const QUrl& appCastUrl) : Updater() , d(std::make_unique()) { - d->delegate = [[DelegateObject alloc] init]; + d->delegate = [[NCSparkleUpdaterDelegate alloc] init]; [d->delegate retain]; d->updater = [SUUpdater sharedUpdater];