From c1ba68dd042c86c6650dad534bdb3687c3a8f621 Mon Sep 17 00:00:00 2001 From: Yuki Hashimoto Date: Mon, 5 Jul 2021 12:57:28 +0200 Subject: Cleanup: use arrayWithObject to reduce the code Similar code is found in Apple's code samples. Differential Revision: https://developer.blender.org/D11434 --- intern/ghost/intern/GHOST_WindowViewCocoa.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'intern/ghost') diff --git a/intern/ghost/intern/GHOST_WindowViewCocoa.h b/intern/ghost/intern/GHOST_WindowViewCocoa.h index f47e02704b2..b94f46b6e63 100644 --- a/intern/ghost/intern/GHOST_WindowViewCocoa.h +++ b/intern/ghost/intern/GHOST_WindowViewCocoa.h @@ -74,12 +74,7 @@ composing = YES; // interpret event to call insertText - NSMutableArray *events; - events = [[NSMutableArray alloc] initWithCapacity:1]; - [events addObject:event]; - [self interpretKeyEvents:events]; // calls insertText - [events removeObject:event]; - [events release]; + [self interpretKeyEvents:[NSArray arrayWithObject:event]]; // calls insertText return; } } -- cgit v1.2.3