mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-21 02:41:04 +00:00
o replaced -definitionName call by -declarationName
o replaced -setDefinitionName -setDeclarationName git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@19048 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
6a21e8b0a5
commit
b01facf806
2 changed files with 16 additions and 16 deletions
|
@ -1,6 +1,6 @@
|
|||
/** GSWConditional.m - <title>GSWeb: Class GSWConditional</title>
|
||||
|
||||
Copyright (C) 1999-2003 Free Software Foundation, Inc.
|
||||
Copyright (C) 1999-2004 Free Software Foundation, Inc.
|
||||
|
||||
Written by: Manuel Guesdon <mguesdon@orange-concept.com>
|
||||
Date: Jan 1999
|
||||
|
@ -130,11 +130,11 @@ Bindings
|
|||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
-(void)setDefinitionName:(NSString*)definitionName
|
||||
-(void)setDeclarationName:(NSString*)declarationName
|
||||
{
|
||||
[super setDefinitionName:definitionName];
|
||||
if (definitionName && _childrenGroup)
|
||||
[_childrenGroup setDefinitionName:[NSString stringWithFormat:@"%@-StaticGroup",definitionName]];
|
||||
[super setDeclarationName:declarationName];
|
||||
if (declarationName && _childrenGroup)
|
||||
[_childrenGroup setDeclarationName:[NSString stringWithFormat:@"%@-StaticGroup",declarationName]];
|
||||
};
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
@ -180,8 +180,8 @@ Bindings
|
|||
NSDebugMLLog(@"gswdync",@"elementID=%@",[aContext elementID]);
|
||||
if (negate)
|
||||
doIt=!doIt;
|
||||
NSDebugMLLog(@"gswdync",@"defname=%@ condition=%@ negate=%@ evaluatedCondition=%s evaluatedNegate=%s doIt=%s",
|
||||
[self definitionName],
|
||||
NSDebugMLLog(@"gswdync",@"declarationName=%@ condition=%@ negate=%@ evaluatedCondition=%s evaluatedNegate=%s doIt=%s",
|
||||
[self declarationName],
|
||||
_condition,
|
||||
_negate,
|
||||
(condition ? "YES" : "NO"),
|
||||
|
@ -233,8 +233,8 @@ Bindings
|
|||
doIt=condition;
|
||||
if (negate)
|
||||
doIt=!doIt;
|
||||
NSDebugMLLog(@"gswdync",@"defname=%@ condition=%@ negate=%@ evaluatedCondition=%s evaluatedNegate=%s doIt=%s",
|
||||
[self definitionName],
|
||||
NSDebugMLLog(@"gswdync",@"declarationName=%@ condition=%@ negate=%@ evaluatedCondition=%s evaluatedNegate=%s doIt=%s",
|
||||
[self declarationName],
|
||||
_condition,
|
||||
_negate,
|
||||
(condition ? "YES" : "NO"),
|
||||
|
@ -294,8 +294,8 @@ Bindings
|
|||
doIt=condition;
|
||||
if (negate)
|
||||
doIt=!doIt;
|
||||
NSDebugMLLog(@"gswdync",@"defname=%@ condition=%@ negate=%@ evaluatedCondition=%s evaluatedNegate=%s doIt=%s",
|
||||
[self definitionName],
|
||||
NSDebugMLLog(@"gswdync",@"declarationName=%@ condition=%@ negate=%@ evaluatedCondition=%s evaluatedNegate=%s doIt=%s",
|
||||
[self declarationName],
|
||||
_condition,
|
||||
_negate,
|
||||
(condition ? "YES" : "NO"),
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/** GSWRepetition.m - <title>GSWeb: Class GSWRepetition</title>
|
||||
|
||||
Copyright (C) 1999-2003 Free Software Foundation, Inc.
|
||||
Copyright (C) 1999-2004 Free Software Foundation, Inc.
|
||||
|
||||
Written by: Manuel Guesdon <mguesdon@orange-concept.com>
|
||||
Date: Jan 1999
|
||||
|
@ -121,11 +121,11 @@ RCS_ID("$Id$")
|
|||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
-(void)setDefinitionName:(NSString*)definitionName
|
||||
-(void)setDeclarationName:(NSString*)declarationName
|
||||
{
|
||||
[super setDefinitionName:definitionName];
|
||||
if (definitionName && _childrenGroup)
|
||||
[_childrenGroup setDefinitionName:[NSString stringWithFormat:@"%@-StaticGroup",definitionName]];
|
||||
[super setDeclarationName:declarationName];
|
||||
if (declarationName && _childrenGroup)
|
||||
[_childrenGroup setDeclarationName:[NSString stringWithFormat:@"%@-StaticGroup",declarationName]];
|
||||
};
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue