aboutsummaryrefslogtreecommitdiffstats
path: root/Low Battery Yup/AppDelegate.h
diff options
context:
space:
mode:
authorTeddy Wing2016-11-17 08:23:43 -0500
committerTeddy Wing2016-11-17 08:23:43 -0500
commitdb87cb37fabb7ddddfc4a3472a351ca35be64e75 (patch)
treee83387a29639910610cc702830bc9a67b28fc64a /Low Battery Yup/AppDelegate.h
parent7677b59543a8d2edc9a28f77f26ebb02492e2b5c (diff)
downloadLow-Battery-Yup-db87cb37fabb7ddddfc4a3472a351ca35be64e75.tar.bz2
Add MASShortcut widget to main window
Also remove the `@property` for the window because we're old school.
Diffstat (limited to 'Low Battery Yup/AppDelegate.h')
-rw-r--r--Low Battery Yup/AppDelegate.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/Low Battery Yup/AppDelegate.h b/Low Battery Yup/AppDelegate.h
index ad3458f..21e15f0 100644
--- a/Low Battery Yup/AppDelegate.h
+++ b/Low Battery Yup/AppDelegate.h
@@ -7,9 +7,11 @@
//
#import <Cocoa/Cocoa.h>
+#import <MASShortcut/MASShortcutView.h>
-@interface AppDelegate : NSObject <NSApplicationDelegate>
-
-@property (assign) IBOutlet NSWindow *window;
+@interface AppDelegate : NSObject <NSApplicationDelegate> {
+ IBOutlet NSWindow *window;
+ IBOutlet MASShortcutView *shortcut_view;
+}
@end