Files
Sparkle/TestApplication/SUUpdateSettingsWindowController.h
Zorg 411360deb2 Allow check for updates menu item to be invoked outside of settings
Previously check for updates was only in responder chain of the settings window controller. Now it's in responder chain of the entire application.
2021-04-25 15:48:20 -07:00

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