diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2008-04-30 04:37:40 +0000 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2008-04-30 04:37:40 +0000 |
commit | d36e83a374d0d26a145e9cba631dd984578ee571 (patch) | |
tree | 4efe37a39811decaf8f99f3b4b7fa4a04907307f | |
parent | 51e95165dc7c520801f4e7e60a1c062fd3d53312 (diff) |
Fixed a stupid typo and cleaned up some junk.
-rw-r--r-- | Cydia.mm | 12 |
1 files changed, 3 insertions, 9 deletions
@@ -114,14 +114,6 @@ extern NSString *kUIButtonBarButtonTitleWidth; extern NSString *kUIButtonBarButtonType; /* }}} */ -#if 1 -#define $_ -#define _$ -#else -#define $_ fprintf(stderr, "+");_trace(); -#define _$ fprintf(stderr, "-");_trace(); -#endif - /* iPhoneOS 2.0 Compatibility {{{ */ #ifdef __OBJC2__ @interface UICGColor : NSObject { @@ -519,6 +511,7 @@ NSString *Simplify(NSString *title) { } /* }}} */ +/* Delegate Prototypes {{{ */ @class Package; @class Source; @@ -535,6 +528,7 @@ NSString *Simplify(NSString *title) { - (void) slideUp:(UIAlertSheet *)alert; - (void) distUpgrade; @end +/* }}} */ /* Status Delegation {{{ */ class Status : @@ -3142,7 +3136,7 @@ void AddTextView(NSMutableDictionary *fields, NSMutableArray *packages, NSString ] autorelease]; [sheet setBodyText:[NSString stringWithFormat: - @"The package %@ cannot be found in your current sources. I might recommend intalling more sources." + @"The package %@ cannot be found in your current sources. I might recommend installing more sources." , name]]; [sheet popupAlertAnimated:YES]; |