From acc240b66968e7244558bebff72498637501f1c6 Mon Sep 17 00:00:00 2001 From: Aparajita Fishman Date: Thu, 31 Jan 2013 07:42:06 +0800 Subject: [PATCH] Missing semicolon --- AppKit/CPButton.j | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppKit/CPButton.j b/AppKit/CPButton.j index 3d468e87d..0fddcf3e7 100644 --- a/AppKit/CPButton.j +++ b/AppKit/CPButton.j @@ -222,7 +222,7 @@ CPButtonImageOffset = 3.0; else if (![anObjectValue isKindOfClass:[CPNumber class]]) anObjectValue = CPOnState; else if (anObjectValue >= CPOnState) - anObjectValue = CPOnState + anObjectValue = CPOnState; else if (anObjectValue < CPOffState) if ([self allowsMixedState]) anObjectValue = CPMixedState;