diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-08-17 00:46:47 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-08-17 00:46:47 +0200 |
commit | a0d549fe93c0055ffd0196473b217e151f3242b7 (patch) | |
tree | bd4eeaf31b42cd109075a016de6440f12d6cc103 /platform/ios | |
parent | c430c775cab23907677c701873ff9ffdade1e47e (diff) | |
parent | 1938d170aac4e8ce749d0b5e6fa0144042af8b85 (diff) | |
download | redot-engine-a0d549fe93c0055ffd0196473b217e151f3242b7.tar.gz |
Merge pull request #95272 from akien-mga/applicalifragilisticexpialidocious
iOS: Fix typo in GodotApplicationDelegate
Diffstat (limited to 'platform/ios')
-rw-r--r-- | platform/ios/godot_app_delegate.h | 2 | ||||
-rw-r--r-- | platform/ios/godot_app_delegate.m | 4 | ||||
-rw-r--r-- | platform/ios/main.m | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/platform/ios/godot_app_delegate.h b/platform/ios/godot_app_delegate.h index a9bfcbb0b2..85dc6bb390 100644 --- a/platform/ios/godot_app_delegate.h +++ b/platform/ios/godot_app_delegate.h @@ -32,7 +32,7 @@ typedef NSObject<UIApplicationDelegate> ApplicationDelegateService; -@interface GodotApplicalitionDelegate : NSObject <UIApplicationDelegate> +@interface GodotApplicationDelegate : NSObject <UIApplicationDelegate> @property(class, readonly, strong) NSArray<ApplicationDelegateService *> *services; diff --git a/platform/ios/godot_app_delegate.m b/platform/ios/godot_app_delegate.m index 74e8705bc3..53e53cd0c6 100644 --- a/platform/ios/godot_app_delegate.m +++ b/platform/ios/godot_app_delegate.m @@ -32,11 +32,11 @@ #import "app_delegate.h" -@interface GodotApplicalitionDelegate () +@interface GodotApplicationDelegate () @end -@implementation GodotApplicalitionDelegate +@implementation GodotApplicationDelegate static NSMutableArray<ApplicationDelegateService *> *services = nil; diff --git a/platform/ios/main.m b/platform/ios/main.m index 33b1034d98..89a00c9ae9 100644 --- a/platform/ios/main.m +++ b/platform/ios/main.m @@ -46,7 +46,7 @@ int main(int argc, char *argv[]) { gargv = argv; @autoreleasepool { - NSString *className = NSStringFromClass([GodotApplicalitionDelegate class]); + NSString *className = NSStringFromClass([GodotApplicationDelegate class]); UIApplicationMain(argc, argv, nil, className); } return 0; |