mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-04-23 15:33:43 +00:00
* GSWeb.framework/GSWDisplayGroup.m:
([GSWDisplayGroup init]): Set fetchesOnLoad to YES by default. Reported by S.J. Chun <chunsj@embian.com>. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@19157 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
6094776767
commit
49f65e75a7
2 changed files with 18 additions and 6 deletions
|
@ -1,3 +1,9 @@
|
|||
2004-04-20 David Ayers <d.ayers@inode.at>
|
||||
|
||||
* GSWeb.framework/GSWDisplayGroup.m:
|
||||
([GSWDisplayGroup init]): Set fetchesOnLoad to YES by default.
|
||||
Reported by S.J. Chun <chunsj@embian.com>.
|
||||
|
||||
2004-04-14 David Ayers <d.ayers@inode.at>
|
||||
|
||||
* gsweb.make.in: Remove GSANTLR dependency.
|
||||
|
|
|
@ -109,7 +109,7 @@ static BOOL globalDefaultForValidatesChangesImmediately = NO;
|
|||
//--------------------------------------------------------------------
|
||||
// init
|
||||
|
||||
- init
|
||||
- (id)init
|
||||
{
|
||||
if ((self = [super init]))
|
||||
{
|
||||
|
@ -127,17 +127,23 @@ static BOOL globalDefaultForValidatesChangesImmediately = NO;
|
|||
NSDebugMLLog(@"gswdisplaygroup",@"_queryOperator=%@",_queryOperator);
|
||||
_queryOperator = [[NSMutableDictionary alloc] initWithCapacity:8];
|
||||
NSDebugMLLog(@"gswdisplaygroup",@"_queryOperator=%@",_queryOperator);
|
||||
_queryKeyValueQualifierClassName = [[NSMutableDictionary alloc] initWithCapacity:8];
|
||||
_queryKeyValueQualifierClassName
|
||||
= [[NSMutableDictionary alloc] initWithCapacity:8];
|
||||
|
||||
_queryBindings = [[NSMutableDictionary alloc] initWithCapacity:8];
|
||||
|
||||
[self setCurrentBatchIndex:1];
|
||||
|
||||
ASSIGN(_defaultStringMatchOperator,[[self class]globalDefaultStringMatchOperator]);
|
||||
ASSIGN(_defaultStringMatchFormat,[[self class]globalDefaultStringMatchFormat]);
|
||||
NSDebugMLLog(@"gswdisplaygroup",@"_defaultStringMatchOperator=%@",_defaultStringMatchOperator);
|
||||
NSDebugMLLog(@"gswdisplaygroup",@"_defaultStringMatchFormat=%@",_defaultStringMatchFormat);
|
||||
ASSIGN(_defaultStringMatchOperator,
|
||||
[[self class]globalDefaultStringMatchOperator]);
|
||||
ASSIGN(_defaultStringMatchFormat,
|
||||
[[self class]globalDefaultStringMatchFormat]);
|
||||
NSDebugMLLog(@"gswdisplaygroup",@"_defaultStringMatchOperator=%@",
|
||||
_defaultStringMatchOperator);
|
||||
NSDebugMLLog(@"gswdisplaygroup",@"_defaultStringMatchFormat=%@",
|
||||
_defaultStringMatchFormat);
|
||||
|
||||
[self setFetchesOnLoad:YES];
|
||||
[self setSelectsFirstObjectAfterFetch:YES];
|
||||
};
|
||||
return self;
|
||||
|
|
Loading…
Reference in a new issue