mirror of
https://github.com/sparkle-project/Sparkle.git
synced 2025-11-01 15:34:38 +00:00
411360deb2
Previously check for updates was only in responder chain of the settings window controller. Now it's in responder chain of the entire application.
18 lines
323 B
Objective-C
18 lines
323 B
Objective-C
//
|
|
// SUUpdateSettingsWindowController.h
|
|
// Sparkle
|
|
//
|
|
// Created by Mayur Pawashe on 7/25/15.
|
|
// Copyright (c) 2015 Sparkle Project. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@class SPUUpdater;
|
|
|
|
@interface SUUpdateSettingsWindowController : NSWindowController
|
|
|
|
@property (nonatomic) SPUUpdater *updater;
|
|
|
|
@end
|