diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2009-01-26 13:13:30 +0000 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2010-09-30 07:09:43 +0000 |
commit | 5d774a8892d28544253b65ef85916e5848dba716 (patch) | |
tree | f7632e8d7367340ed9c4de0a8ec0aa3264313b35 /Cydia.mm | |
parent | 447db19d4510997a9db15540485933ad1d0f1137 (diff) |
Forgot to fix the other half of indexing.
Diffstat (limited to 'Cydia.mm')
-rw-r--r-- | Cydia.mm | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |