diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-02-24 09:03:52 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-07 02:41:15 -0800 |
commit | 123b380c9dc4e9834a7624f50003c5d9e1d76af8 (patch) | |
tree | c42b3e7d1a793d941a8f7bfa83f73e2900439d2e /MobileCydia.mm | |
parent | 5d79f7bf9c89782a2a8781113b356674d3c33f9e (diff) |
Simplify and correct memory management of SectionController.
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r-- | MobileCydia.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 483bd9b..249439d 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -7125,7 +7125,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { /* Section Controller {{{ */ @interface SectionController : FilteredPackageListController { - NSString *section_; + _H<NSString> section_; } - (id) initWithDatabase:(Database *)database section:(NSString *)section; |