added -(BOOL)isDebuggingEnabled

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@19530 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Dave Wetzel 2004-06-15 23:11:51 +00:00
parent f87efed053
commit a6d04c504d

View file

@ -944,6 +944,13 @@ int GSWApplicationMain(NSString* applicationClassName,
return [self allowsConcurrentRequestHandling];
};
//--------------------------------------------------------------------
// calls the class because on MacOSX KVC does not support "application.class.isDebuggingEnabled"
- (BOOL)isDebuggingEnabled
{
return [[self class] isDebuggingEnabled];
};
//--------------------------------------------------------------------
// lockRequestHandling
-(BOOL)isRequestHandlingLocked
@ -1798,7 +1805,8 @@ int GSWApplicationMain(NSString* applicationClassName,
request:nil];
NSDebugMLLog(@"gswcomponents",@"url=%@",url);
NSDebugMLLog(@"gswcomponents",@"frameworkName=%@",frameworkName);
NSDebugMLog(!@"Component %@ Found at=%@",aName,path);
//NSDebugMLog(!@"Component %@ Found at=%@",aName,path);
componentDefinition=[[[GSWComponentDefinition alloc] initWithName:aName
path:path
baseURL:url