From ef47f509c2d9667b9b08a9a4fc9d4b3aa257d102 Mon Sep 17 00:00:00 2001 From: theraven Date: Mon, 23 Nov 2009 23:13:26 +0000 Subject: [PATCH] Made GSTheme implement fast forwarding. Should speed things up a lot with the new ABI. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@29052 72102866-910b-0410-8b05-ffd578937521 --- Source/GSTheme.m | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/GSTheme.m b/Source/GSTheme.m index 59e49fa15..c8108e5c9 100644 --- a/Source/GSTheme.m +++ b/Source/GSTheme.m @@ -1376,6 +1376,10 @@ typedef struct { { return [_resource description]; } +- (id) forwardingTargetForSelector:(SEL)aSelector +{ + return _resource; +} - (void) forwardInvocation: (NSInvocation*)anInvocation { [anInvocation invokeWithTarget: _resource];