]> git.saurik.com Git - cydia.git/commitdiff
Fixed a 2.0/1.2 issue.
authorJay Freeman (saurik) <saurik@saurk.com>
Wed, 16 Apr 2008 07:12:24 +0000 (07:12 +0000)
committerJay Freeman (saurik) <saurik@saurk.com>
Wed, 16 Apr 2008 07:12:24 +0000 (07:12 +0000)
Cydia.mm

index 8bd168cf9678f6f19524aafa55c766cfe6c70f86..46a35ab649532a0fe079677e298e31179cbf3f93 100644 (file)
--- a/Cydia.mm
+++ b/Cydia.mm
@@ -77,17 +77,22 @@ while (false)
 
 @interface NSObject (iPhoneOS)
 - (CGColorRef) cgColor;
+- (CGColorRef) CGColor;
 - (void) set;
 @end
 
 @implementation NSObject (iPhoneOS)
 
 - (CGColorRef) cgColor {
+    return [self CGColor];
+}
+
+- (CGColorRef) CGColor {
     return (CGColorRef) self;
 }
 
 - (void) set {
-    [[[[objc_getClass("UICGColor") alloc] initWithCGColor:[self cgColor]] autorelease] set];
+    [[[[objc_getClass("UICGColor") alloc] initWithCGColor:[self CGColor]] autorelease] set];
 }
 
 @end