Files
Sparkle/TestApplication/SUUpdateSettingsWindowController.m
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

23 lines
463 B
Objective-C

//
// SUUpdateSettingsWindowController.m
// Sparkle
//
// Created by Mayur Pawashe on 7/25/15.
// Copyright (c) 2015 Sparkle Project. All rights reserved.
//
#import "SUUpdateSettingsWindowController.h"
#import <Sparkle/Sparkle.h>
// This class binds to various updater properties in the nib
@implementation SUUpdateSettingsWindowController
@synthesize updater = _updater;
- (NSString *)windowNibName
{
return NSStringFromClass([self class]);
}
@end