mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-23 19:51:13 +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
8d43c1b7cd
commit
ae8da86aaa
2 changed files with 16 additions and 16 deletions
|
@ -1,6 +1,6 @@
|
||||||
/** GSWConditional.m - <title>GSWeb: Class GSWConditional</title>
|
/** 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>
|
Written by: Manuel Guesdon <mguesdon@orange-concept.com>
|
||||||
Date: Jan 1999
|
Date: Jan 1999
|
||||||
|
@ -130,11 +130,11 @@ Bindings
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------
|
//--------------------------------------------------------------------
|
||||||
-(void)setDefinitionName:(NSString*)definitionName
|
-(void)setDeclarationName:(NSString*)declarationName
|
||||||
{
|
{
|
||||||
[super setDefinitionName:definitionName];
|
[super setDeclarationName:declarationName];
|
||||||
if (definitionName && _childrenGroup)
|
if (declarationName && _childrenGroup)
|
||||||
[_childrenGroup setDefinitionName:[NSString stringWithFormat:@"%@-StaticGroup",definitionName]];
|
[_childrenGroup setDeclarationName:[NSString stringWithFormat:@"%@-StaticGroup",declarationName]];
|
||||||
};
|
};
|
||||||
|
|
||||||
//--------------------------------------------------------------------
|
//--------------------------------------------------------------------
|
||||||
|
@ -180,8 +180,8 @@ Bindings
|
||||||
NSDebugMLLog(@"gswdync",@"elementID=%@",[aContext elementID]);
|
NSDebugMLLog(@"gswdync",@"elementID=%@",[aContext elementID]);
|
||||||
if (negate)
|
if (negate)
|
||||||
doIt=!doIt;
|
doIt=!doIt;
|
||||||
NSDebugMLLog(@"gswdync",@"defname=%@ condition=%@ negate=%@ evaluatedCondition=%s evaluatedNegate=%s doIt=%s",
|
NSDebugMLLog(@"gswdync",@"declarationName=%@ condition=%@ negate=%@ evaluatedCondition=%s evaluatedNegate=%s doIt=%s",
|
||||||
[self definitionName],
|
[self declarationName],
|
||||||
_condition,
|
_condition,
|
||||||
_negate,
|
_negate,
|
||||||
(condition ? "YES" : "NO"),
|
(condition ? "YES" : "NO"),
|
||||||
|
@ -233,8 +233,8 @@ Bindings
|
||||||
doIt=condition;
|
doIt=condition;
|
||||||
if (negate)
|
if (negate)
|
||||||
doIt=!doIt;
|
doIt=!doIt;
|
||||||
NSDebugMLLog(@"gswdync",@"defname=%@ condition=%@ negate=%@ evaluatedCondition=%s evaluatedNegate=%s doIt=%s",
|
NSDebugMLLog(@"gswdync",@"declarationName=%@ condition=%@ negate=%@ evaluatedCondition=%s evaluatedNegate=%s doIt=%s",
|
||||||
[self definitionName],
|
[self declarationName],
|
||||||
_condition,
|
_condition,
|
||||||
_negate,
|
_negate,
|
||||||
(condition ? "YES" : "NO"),
|
(condition ? "YES" : "NO"),
|
||||||
|
@ -294,8 +294,8 @@ Bindings
|
||||||
doIt=condition;
|
doIt=condition;
|
||||||
if (negate)
|
if (negate)
|
||||||
doIt=!doIt;
|
doIt=!doIt;
|
||||||
NSDebugMLLog(@"gswdync",@"defname=%@ condition=%@ negate=%@ evaluatedCondition=%s evaluatedNegate=%s doIt=%s",
|
NSDebugMLLog(@"gswdync",@"declarationName=%@ condition=%@ negate=%@ evaluatedCondition=%s evaluatedNegate=%s doIt=%s",
|
||||||
[self definitionName],
|
[self declarationName],
|
||||||
_condition,
|
_condition,
|
||||||
_negate,
|
_negate,
|
||||||
(condition ? "YES" : "NO"),
|
(condition ? "YES" : "NO"),
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/** GSWRepetition.m - <title>GSWeb: Class GSWRepetition</title>
|
/** 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>
|
Written by: Manuel Guesdon <mguesdon@orange-concept.com>
|
||||||
Date: Jan 1999
|
Date: Jan 1999
|
||||||
|
@ -121,11 +121,11 @@ RCS_ID("$Id$")
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------
|
//--------------------------------------------------------------------
|
||||||
-(void)setDefinitionName:(NSString*)definitionName
|
-(void)setDeclarationName:(NSString*)declarationName
|
||||||
{
|
{
|
||||||
[super setDefinitionName:definitionName];
|
[super setDeclarationName:declarationName];
|
||||||
if (definitionName && _childrenGroup)
|
if (declarationName && _childrenGroup)
|
||||||
[_childrenGroup setDefinitionName:[NSString stringWithFormat:@"%@-StaticGroup",definitionName]];
|
[_childrenGroup setDeclarationName:[NSString stringWithFormat:@"%@-StaticGroup",declarationName]];
|
||||||
};
|
};
|
||||||
|
|
||||||
//--------------------------------------------------------------------
|
//--------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in a new issue