* 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:
David Ayers 2004-04-20 10:29:08 +00:00
parent 6094776767
commit 49f65e75a7
2 changed files with 18 additions and 6 deletions

View file

@ -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.

View file

@ -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;