From b1f6f3ddfa7a46745af120f8bbbf167deb3aabd4 Mon Sep 17 00:00:00 2001 From: Alexander Ljungberg Date: Thu, 10 Nov 2011 12:30:05 +0000 Subject: [PATCH] Missing semicolons. --- AppKit/_CPAttachedWindow.j | 2 +- AppKit/_CPCornerView.j | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/AppKit/_CPAttachedWindow.j b/AppKit/_CPAttachedWindow.j index 8dc6d24f0..f67dba070 100644 --- a/AppKit/_CPAttachedWindow.j +++ b/AppKit/_CPAttachedWindow.j @@ -250,7 +250,7 @@ var _CPAttachedWindow_attachedWindowShouldClose_ = 1 << 0, // CPMaxXEdge originRight.x += aRect.size.width; - originRight.y += (aRect.size.height / 2.0) - (CPRectGetHeight([self frame]) / 2.0) + originRight.y += (aRect.size.height / 2.0) - (CPRectGetHeight([self frame]) / 2.0); // CPMinXEdge originLeft.x -= CPRectGetWidth([self frame]); diff --git a/AppKit/_CPCornerView.j b/AppKit/_CPCornerView.j index 30b003bbc..c68d8d4f5 100644 --- a/AppKit/_CPCornerView.j +++ b/AppKit/_CPCornerView.j @@ -64,7 +64,7 @@ - (id)initWithFrame:(CGRect)aFrame { - self = [super initWithFrame:aFrame] + self = [super initWithFrame:aFrame]; if (self) [self _init];