From: Jay Freeman (saurik) Date: Fri, 25 Feb 2011 20:43:05 +0000 (-0800) Subject: Use mixed-case for ProgressEventType constants. X-Git-Tag: v1.1.0%b1~176 X-Git-Url: https://git.saurik.com/cydia.git/commitdiff_plain/e4123ce0f74c829513f5c5370a8cf90262a6ee64?ds=sidebyside Use mixed-case for ProgressEventType constants. --- diff --git a/MobileCydia.mm b/MobileCydia.mm index 5c5d6af3..e9c8908c 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -1069,10 +1069,10 @@ static NSString *Idiom_; static NSMutableSet *CydiaHosts_; -static NSString *kCydiaProgressEventTypeError = @"ERROR"; -static NSString *kCydiaProgressEventTypeInformation = @"INFORMATION"; -static NSString *kCydiaProgressEventTypeStatus = @"STATUS"; -static NSString *kCydiaProgressEventTypeWarning = @"WARNING"; +static NSString *kCydiaProgressEventTypeError = @"Error"; +static NSString *kCydiaProgressEventTypeInformation = @"Information"; +static NSString *kCydiaProgressEventTypeStatus = @"Status"; +static NSString *kCydiaProgressEventTypeWarning = @"Warning"; /* }}} */ /* Display Helpers {{{ */