aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTeddy Wing2023-09-29 22:24:56 +0200
committerTeddy Wing2023-09-29 22:24:56 +0200
commit6516ccce467eeb9237fdbf218d2ce59d07b0ad11 (patch)
treef89d8f3c693880f198ee9de81a97898811f36905 /src
parent69ddab61e63fa7387af0abfa6567176200690fe6 (diff)
downloadBase-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.h4
-rw-r--r--src/DocumentWindowController.m11
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