diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-02-27 00:46:49 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-07 02:41:25 -0800 |
commit | 8d2629089afbbfa7ea9e253377363dcb271b187f (patch) | |
tree | 950d55a7b01ae07c333d00384a9e5b4a0211a281 | |
parent | 6c0ba3d9b2fd8be364554455ed3add48b1241d06 (diff) |
Rename -[Source description] to -[Source shortDescription].
-rw-r--r-- | MobileCydia.mm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 9057ef7..6731a59 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -1693,7 +1693,7 @@ static void PackageImport(const void *key, const void *value, void *context) { - (NSString *) host; - (NSString *) name; -- (NSString *) description; +- (NSString *) shortDescription; - (NSString *) label; - (NSString *) origin; - (NSString *) version; @@ -1730,13 +1730,13 @@ static void PackageImport(const void *key, const void *value, void *context) { + (NSArray *) _attributeKeys { return [NSArray arrayWithObjects: - @"description", @"distribution", @"host", @"key", @"label", @"name", @"origin", + @"shortDescription", @"trusted", @"type", @"uri", @@ -1880,7 +1880,7 @@ static void PackageImport(const void *key, const void *value, void *context) { return origin_.empty() ? (id) authority_ : origin_; } -- (NSString *) description { +- (NSString *) shortDescription { return description_; } |