forked from radix1980/Mac-Linux-USB-Loader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSBFirmwareViewController.m
More file actions
39 lines (31 loc) · 843 Bytes
/
SBFirmwareViewController.m
File metadata and controls
39 lines (31 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//
// SBFirmwareViewController.m
// Mac Linux USB Loader
//
// Created by SevenBits on 11/26/12.
// Copyright (c) 2013 SevenBits. All rights reserved.
//
#import "SBFirmwareViewController.h"
@implementation SBFirmwareViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:@"SBFirmwareViewController" bundle:nibBundleOrNil];
if (self) {
// Initialization code here.
}
return self;
}
#pragma mark - RHPreferencesViewControllerProtocol
- (NSString*)identifier {
return NSStringFromClass(self.class);
}
- (NSImage*)toolbarItemImage {
return [NSImage imageNamed:@"Boot"];
}
- (NSString*)toolbarItemLabel {
return NSLocalizedString(@"Firmware", @"AboutToolbarItemLabel");
}
- (NSView*)initialKeyView{
return nil;
}
@end