From 12c29c83871ba696cd8eebf90b97d7054d9ed664 Mon Sep 17 00:00:00 2001 From: daniel Date: Wed, 4 Apr 2018 14:17:42 -0700 Subject: [PATCH] Formatting: add missing semi-colons to CPEvent.j --- AppKit/CPEvent.j | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AppKit/CPEvent.j b/AppKit/CPEvent.j index 42dbad35b..a6e99f265 100644 --- a/AppKit/CPEvent.j +++ b/AppKit/CPEvent.j @@ -66,7 +66,7 @@ var _CPEventPeriodicEventPeriod = 0, CPWindow _window; Number _windowNumber; CPString _characters; - CPString _charactersIgnoringModifiers + CPString _charactersIgnoringModifiers; BOOL _isARepeat; unsigned _keyCode; DOMEvent _DOMEvent; @@ -642,7 +642,7 @@ var _CPEventPeriodicEventPeriod = 0, - (CPTrackingArea)trackingArea { if ((_type !== CPMouseEntered) && (_type !== CPMouseExited) && (_type !== CPCursorUpdate)) - [CPException raise:CPInternalInconsistencyException format:@"You can't call trackingArea for events of type %#x", _type] + [CPException raise:CPInternalInconsistencyException format:@"You can't call trackingArea for events of type %#x", _type]; return _trackingArea; }