summaryrefslogtreecommitdiff
path: root/Cydia.mm
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2009-01-26 13:13:30 +0000
committerJay Freeman (saurik) <saurik@saurik.com>2010-09-30 07:09:43 +0000
commit5d774a8892d28544253b65ef85916e5848dba716 (patch)
treef7632e8d7367340ed9c4de0a8ec0aa3264313b35 /Cydia.mm
parent447db19d4510997a9db15540485933ad1d0f1137 (diff)
Forgot to fix the other half of indexing.
Diffstat (limited to 'Cydia.mm')
-rw-r--r--Cydia.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cydia.mm b/Cydia.mm
index 2afe6ee..aba5704 100644
--- a/Cydia.mm
+++ b/Cydia.mm
@@ -2273,7 +2273,7 @@ class Progress :
- (Section *) initWithIndex:(unichar)index row:(size_t)row {
if ((self = [super init]) != nil) {
- name_ = [[NSString stringWithCharacters:&index length:1] retain];
+ name_ = [(index == '#' ? @"123" : [NSString stringWithCharacters:&index length:1]) retain];
index_ = index;
row_ = row;
} return self;