* 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:
dwetzel 2010-06-05 21:45:52 +00:00
parent 6ebbd7a4fb
commit 8279f5933e
3 changed files with 7 additions and 11 deletions

View file

@ -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

View file

@ -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>

View file

@ -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];
};
};