mirror of
https://github.com/textmate/textmate.git
synced 2026-02-14 08:24:56 -05:00
17 lines
363 B
Objective-C
17 lines
363 B
Objective-C
#import "PreferencesPane.h"
|
|
|
|
@interface SoftwareUpdatePreferences : PreferencesPane
|
|
{
|
|
NSString* lastCheck;
|
|
NSTimer* updateLastCheckTimer;
|
|
|
|
BOOL isChecking;
|
|
NSDate* lastPoll;
|
|
NSString* errorString;
|
|
}
|
|
@property (nonatomic, readonly) NSString* lastCheck;
|
|
@property (nonatomic, readonly) BOOL isChecking;
|
|
|
|
- (IBAction)performSoftwareUpdateCheck:(id)sender;
|
|
@end
|