mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-04-23 07:20:55 +00:00
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:
parent
f87efed053
commit
a6d04c504d
1 changed files with 9 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue