mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 13:35:58 +03:00
Name sparkle updater delegate more reasonably
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
This commit is contained in:
parent
88b2ae0d21
commit
aa3b315c32
1 changed files with 4 additions and 4 deletions
|
@ -22,10 +22,10 @@
|
||||||
#include "configfile.h"
|
#include "configfile.h"
|
||||||
#include "updater/sparkleupdater.h"
|
#include "updater/sparkleupdater.h"
|
||||||
|
|
||||||
@interface DelegateObject : NSObject <SUUpdaterDelegate>
|
@interface NCSparkleUpdaterDelegate : NSObject <SUUpdaterDelegate>
|
||||||
- (BOOL)updaterMayCheckForUpdates:(SUUpdater *)bundle;
|
- (BOOL)updaterMayCheckForUpdates:(SUUpdater *)bundle;
|
||||||
@end
|
@end
|
||||||
@implementation DelegateObject //(SUUpdaterDelegateInformalProtocol)
|
@implementation NCSparkleUpdaterDelegate //(SUUpdaterDelegateInformalProtocol)
|
||||||
|
|
||||||
- (BOOL)updaterMayCheckForUpdates:(SUUpdater *)bundle
|
- (BOOL)updaterMayCheckForUpdates:(SUUpdater *)bundle
|
||||||
{
|
{
|
||||||
|
@ -86,7 +86,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
SUUpdater* updater;
|
SUUpdater* updater;
|
||||||
DelegateObject *delegate;
|
NCSparkleUpdaterDelegate *delegate;
|
||||||
};
|
};
|
||||||
|
|
||||||
// Delete ~/Library//Preferences/com.owncloud.desktopclient.plist to re-test
|
// Delete ~/Library//Preferences/com.owncloud.desktopclient.plist to re-test
|
||||||
|
@ -94,7 +94,7 @@ SparkleUpdater::SparkleUpdater(const QUrl& appCastUrl)
|
||||||
: Updater()
|
: Updater()
|
||||||
, d(std::make_unique<Private>())
|
, d(std::make_unique<Private>())
|
||||||
{
|
{
|
||||||
d->delegate = [[DelegateObject alloc] init];
|
d->delegate = [[NCSparkleUpdaterDelegate alloc] init];
|
||||||
[d->delegate retain];
|
[d->delegate retain];
|
||||||
|
|
||||||
d->updater = [SUUpdater sharedUpdater];
|
d->updater = [SUUpdater sharedUpdater];
|
||||||
|
|
Loading…
Reference in a new issue