mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-22 03:01:27 +00:00
* GSWeb.framework/GSWApplication.m
fixed typo in include * GSWeb.framework/GSWString.m removed unused IMP caching git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@30585 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
6ebbd7a4fb
commit
8279f5933e
3 changed files with 7 additions and 11 deletions
|
@ -1,3 +1,9 @@
|
|||
2010-05-05 David Wetzel <dave@turbocat.de>
|
||||
* GSWeb.framework/GSWApplication.m
|
||||
fixed typo in include
|
||||
* GSWeb.framework/GSWString.m
|
||||
removed unused IMP caching
|
||||
|
||||
2010-05-05 David Wetzel <dave@turbocat.de>
|
||||
* GSWExtensionsGSW.framework/GSWFileUploadComponent.m
|
||||
* GSWExtensionsGSW.framework/GSWLogin.m
|
||||
|
|
|
@ -41,7 +41,7 @@ RCS_ID("$Id$")
|
|||
#include "attach.h"
|
||||
|
||||
#include <GNUstepBase/NSThread+GNUstepBase.h>
|
||||
#include <GNUstepBase/NString+GNUstepBase.h>
|
||||
#include <GNUstepBase/NSString+GNUstepBase.h>
|
||||
#include <GNUstepBase/NSObject+GNUstepBase.h>
|
||||
#include <GNUstepBase/GSObjCRuntime.h>
|
||||
|
||||
|
|
|
@ -33,11 +33,6 @@ RCS_ID("$Id$")
|
|||
|
||||
#include "GSWeb.h"
|
||||
|
||||
static SEL formattedValueInContextSEL = NULL;
|
||||
|
||||
static IMP standardFormattedValueInContextIMP = NULL;
|
||||
static GSWIMP_BOOL standardEvaluateConditionInContextIMP = NULL;
|
||||
|
||||
static Class standardClass = Nil;
|
||||
|
||||
//====================================================================
|
||||
|
@ -49,12 +44,7 @@ static Class standardClass = Nil;
|
|||
if (self == [GSWString class])
|
||||
{
|
||||
standardClass=[GSWString class];
|
||||
formattedValueInContextSEL=@selector(formattedValueInContext:);
|
||||
|
||||
standardFormattedValueInContextIMP =
|
||||
[self instanceMethodForSelector:formattedValueInContextSEL];
|
||||
standardEvaluateConditionInContextIMP =
|
||||
(GSWIMP_BOOL)[self instanceMethodForSelector:evaluateConditionInContextSEL];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue