aboutsummaryrefslogtreecommitdiffstats
path: root/src/AppDelegate.m
diff options
context:
space:
mode:
authorTeddy Wing2023-08-14 02:30:38 +0200
committerTeddy Wing2023-08-14 02:30:38 +0200
commit6337fd567e99229a5eae69dbdf95ff94b973d9e7 (patch)
treee345ce4a2bc568c3107244a28c3be6fc84a5950c /src/AppDelegate.m
parentb513ebb9b83efda7e59ac0d1257f0ac23f4fe314 (diff)
downloadBase-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.m4
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];