mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-05-30 16:50:52 +00:00
2003-03-04 Manuel Guesdon <mguesdon@orange-concept.com>
* GSWeb/GSWInput.m: o logs * GSWeb/GSWCheckBox.m: o logs o fix for disabled check box * GSWAdaptors/Apache/mod_gsweb.c o typo fix git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@16128 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
6104dbcda5
commit
3cddc8b06e
4 changed files with 52 additions and 34 deletions
|
@ -157,12 +157,18 @@
|
|||
//--------------------------------------------------------------------
|
||||
-(BOOL)disabledInContext:(GSWContext*)context
|
||||
{
|
||||
BOOL isDisabled=NO;
|
||||
LOGObjectFnStartC("GSWInput");
|
||||
NSDebugMLLog(@"gswdync",@"_enabled=%@ _disabled=%@",_enabled,_disabled);
|
||||
if (!WOStrictFlag && _enabled)
|
||||
return ![self evaluateCondition:_enabled
|
||||
isDisabled=![self evaluateCondition:_enabled
|
||||
inContext:context];
|
||||
else
|
||||
return [self evaluateCondition:_disabled
|
||||
inContext:context];
|
||||
isDisabled=[self evaluateCondition:_disabled
|
||||
inContext:context];
|
||||
NSDebugMLLog(@"gswdync",@"isDisabled=%d",isDisabled);
|
||||
LOGObjectFnStopC("GSWInput");
|
||||
return isDisabled;
|
||||
};
|
||||
|
||||
@end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue