diff options
author | Teddy Wing | 2023-09-29 22:28:49 +0200 |
---|---|---|
committer | Teddy Wing | 2023-09-29 22:29:51 +0200 |
commit | 3d8cf2d206f62bf16bb5be222ebab4100fa380f6 (patch) | |
tree | db4596a6c61f02b6d1a19f3dbb843110ecf4e5c7 | |
parent | 6516ccce467eeb9237fdbf218d2ce59d07b0ad11 (diff) | |
download | Base-Windowed-Application-3d8cf2d206f62bf16bb5be222ebab4100fa380f6.tar.bz2 |
AppDelegate: Use consistent brace format
Match the brace format from "Document.h".
-rw-r--r-- | src/AppDelegate.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/AppDelegate.h b/src/AppDelegate.h index d48e22c..05daa34 100644 --- a/src/AppDelegate.h +++ b/src/AppDelegate.h @@ -1,6 +1,7 @@ #import <Cocoa/Cocoa.h> -@interface AppDelegate : NSObject <NSApplicationDelegate> { +@interface AppDelegate : NSObject <NSApplicationDelegate> +{ NSWindow *_window; NSScrollView *_scroll_view; NSTextView *_text_view; |