diff options
author | Teddy Wing | 2023-09-29 22:24:56 +0200 |
---|---|---|
committer | Teddy Wing | 2023-09-29 22:24:56 +0200 |
commit | 6516ccce467eeb9237fdbf218d2ce59d07b0ad11 (patch) | |
tree | f89d8f3c693880f198ee9de81a97898811f36905 /src | |
parent | 69ddab61e63fa7387af0abfa6567176200690fe6 (diff) | |
download | Base-Windowed-Application-6516ccce467eeb9237fdbf218d2ce59d07b0ad11.tar.bz2 |
Remove `DocumentWindowController`
This subclass ended up not being needed. I ended up using a regular
`NSWindowController`.
Diffstat (limited to 'src')
-rw-r--r-- | src/DocumentWindowController.h | 4 | ||||
-rw-r--r-- | src/DocumentWindowController.m | 11 |
2 files changed, 0 insertions, 15 deletions
diff --git a/src/DocumentWindowController.h b/src/DocumentWindowController.h deleted file mode 100644 index e3b277b..0000000 --- a/src/DocumentWindowController.h +++ /dev/null @@ -1,4 +0,0 @@ -#import <Cocoa/Cocoa.h> - -@interface DocumentWindowController : NSWindowController -@end diff --git a/src/DocumentWindowController.m b/src/DocumentWindowController.m deleted file mode 100644 index e83af36..0000000 --- a/src/DocumentWindowController.m +++ /dev/null @@ -1,11 +0,0 @@ -#import "DocumentWindowController.h" - -@implementation DocumentWindowController - -- (void)windowWillLoad -{ - // NSWindow *window = ; - // self = [self initWithWindow:window]; -} - -@end |