summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2011-02-25 12:43:05 -0800
committerJay Freeman (saurik) <saurik@saurik.com>2011-03-07 02:41:19 -0800
commite4123ce0f74c829513f5c5370a8cf90262a6ee64 (patch)
treed100e4f6717128261021ed3d1885f9ad2c52beec
parent389133be2626ea2833530a9a7408563d1cde70ff (diff)
Use mixed-case for ProgressEventType constants.
-rw-r--r--MobileCydia.mm8
1 files changed, 4 insertions, 4 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm
index 5c5d6af..e9c8908 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 {{{ */