From d8b27d122e30451f90b4398361e90449552e1325 Mon Sep 17 00:00:00 2001 From: daniel Date: Wed, 4 Apr 2018 09:41:10 -0700 Subject: [PATCH] Formatting: add semi-colons to CPPlatformPasteboard.j --- AppKit/Platform/DOM/CPPlatformPasteboard.j | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AppKit/Platform/DOM/CPPlatformPasteboard.j b/AppKit/Platform/DOM/CPPlatformPasteboard.j index 9ca0b3141..8d32fbccb 100644 --- a/AppKit/Platform/DOM/CPPlatformPasteboard.j +++ b/AppKit/Platform/DOM/CPPlatformPasteboard.j @@ -469,7 +469,7 @@ Return true if the event may be a copy and paste event, but the target is not an // By default we'll stop the native handling of the event since we're handling it ourselves. However, we need to // stop it before we send the event so that the event can overrule our choice. CPTextField for instance wants the // default handling when focused (which is to insert into the field). - [platformWindow _propagateCurrentDOMEvent:NO] + [platformWindow _propagateCurrentDOMEvent:NO]; [CPApp sendEvent:anEvent]; @@ -492,7 +492,7 @@ Return true if the event may be a copy and paste event, but the target is not an SUPPRESS_CAPPUCCINO_CUT_FOR_EVENT(anEvent); - [platformWindow _propagateCurrentDOMEvent:NO] + [platformWindow _propagateCurrentDOMEvent:NO]; // Let the app react through copy: and cut: actions. [CPApp sendEvent:anEvent];