aboutsummaryrefslogtreecommitdiffstats
path: root/src/AppDelegate.h
diff options
context:
space:
mode:
authorTeddy Wing2023-08-16 01:03:10 +0200
committerTeddy Wing2023-08-16 01:03:10 +0200
commitc8d8ec5ce0778504d70108e0f5e6e2c155959948 (patch)
tree31ec37ce76a77a5ec083c9fa6be11d83e32b0055 /src/AppDelegate.h
parent457427da937e7b99db8b569fe9189228416789b1 (diff)
downloadBase-Windowed-Application-c8d8ec5ce0778504d70108e0f5e6e2c155959948.tar.bz2
AppDelegate: Add an NSTextView to test Edit menu
Most options seem to work, except for Undo, Redo, and the Find commands.
Diffstat (limited to 'src/AppDelegate.h')
-rw-r--r--src/AppDelegate.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/AppDelegate.h b/src/AppDelegate.h
index eb98fd9..a9570b8 100644
--- a/src/AppDelegate.h
+++ b/src/AppDelegate.h
@@ -2,5 +2,6 @@
@interface AppDelegate : NSObject <NSApplicationDelegate> {
NSWindow *_window;
+ NSTextView *_text_view;
}
@end