mirror of
https://github.com/hholtmann/smcFanControl.git
synced 2025-11-04 19:49:16 +01:00
22 lines
402 B
C
22 lines
402 B
C
|
|
//
|
||
|
|
// SUAutomaticUpdateAlert.h
|
||
|
|
// Sparkle
|
||
|
|
//
|
||
|
|
// Created by Andy Matuschak on 3/18/06.
|
||
|
|
// Copyright 2006 Andy Matuschak. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <Cocoa/Cocoa.h>
|
||
|
|
|
||
|
|
@class SUAppcastItem;
|
||
|
|
@interface SUAutomaticUpdateAlert : NSWindowController {
|
||
|
|
SUAppcastItem *updateItem;
|
||
|
|
}
|
||
|
|
|
||
|
|
- initWithAppcastItem:(SUAppcastItem *)item;
|
||
|
|
|
||
|
|
- (IBAction)relaunchNow:sender;
|
||
|
|
- (IBAction)relaunchLater:sender;
|
||
|
|
|
||
|
|
@end
|