diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-03 12:16:14 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-07 02:41:35 -0800 |
commit | ef777b72342d7c61fc50f6707fac34b460536452 (patch) | |
tree | 5c8d0402e10cb828be84a049c81a41900ad69570 /MobileCydia.mm | |
parent | a06e917990ac665d730260679dee4264a2c286ea (diff) |
Separate out Menes/invocationWithSelector.*.
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r-- | MobileCydia.mm | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index df67f54..c0ade05 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -459,21 +459,6 @@ void CFArrayInsertionSortValues(CFMutableArrayRef array, CFRange range, CFCompar @end /* }}} */ -@interface NSInvocation (Cydia) -+ (NSInvocation *) invocationWithSelector:(SEL)selector forTarget:(id)target; -@end - -@implementation NSInvocation (Cydia) - -+ (NSInvocation *) invocationWithSelector:(SEL)selector forTarget:(id)target { - NSInvocation *invocation([NSInvocation invocationWithMethodSignature:[target methodSignatureForSelector:selector]]); - [invocation setTarget:target]; - [invocation setSelector:selector]; - return invocation; -} - -@end - NSUInteger DOMNodeList$countByEnumeratingWithState$objects$count$(DOMNodeList *self, SEL sel, NSFastEnumerationState *state, id *objects, NSUInteger count) { size_t length([self length] - state->state); if (length <= 0) |