diff options
author | Teddy Wing | 2023-08-14 02:30:38 +0200 |
---|---|---|
committer | Teddy Wing | 2023-08-14 02:30:38 +0200 |
commit | 6337fd567e99229a5eae69dbdf95ff94b973d9e7 (patch) | |
tree | e345ce4a2bc568c3107244a28c3be6fc84a5950c /src/AppDelegate.m | |
parent | b513ebb9b83efda7e59ac0d1257f0ac23f4fe314 (diff) | |
download | Base-Windowed-Application-6337fd567e99229a5eae69dbdf95ff94b973d9e7.tar.bz2 |
Move main_menu.{h,m} to MainMenu.{h,m}
Decided to use Core Foundation naming conventions here instead of
C-style lowercase. It seems to fit better with the Objective-C code.
Diffstat (limited to 'src/AppDelegate.m')
-rw-r--r-- | src/AppDelegate.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/AppDelegate.m b/src/AppDelegate.m index 86ba5f6..d2b9df3 100644 --- a/src/AppDelegate.m +++ b/src/AppDelegate.m @@ -1,5 +1,5 @@ #import "AppDelegate.h" -#import "main_menu.h" +#import "MainMenu.h" @implementation AppDelegate @@ -11,7 +11,7 @@ - (void)applicationWillFinishLaunching:(NSNotification *)notification { - NSMenu *menubar = main_menu_create(); + NSMenu *menubar = MainMenuCreate(); [NSApp setMainMenu:menubar]; [menubar release]; |