From e3646786140ac2b2cb24ad303bfd0bf2dc04d0fd Mon Sep 17 00:00:00 2001 From: Manuel Guesdon Date: Fri, 4 Jul 2014 20:10:38 +0000 Subject: [PATCH] * GSWeb/GSWBody.m fix initWithName:... git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@37983 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 3 +++ GSWeb/GSWBody.m | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index af91e93..1f182ac 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2014-07-04 Manuel Guesdon + * GSWeb/GSWBody.m + fix initWithName:... 2014-07-01 Manuel Guesdon * GSWeb/GSWHyperlink.m fix -appendAttribute:... for nil href value diff --git a/GSWeb/GSWBody.m b/GSWeb/GSWBody.m index 60b5266..2a19a70 100644 --- a/GSWeb/GSWBody.m +++ b/GSWeb/GSWBody.m @@ -37,11 +37,11 @@ //-------------------------------------------------------------------- -(id)initWithName:(NSString*)name associations:(NSDictionary*)associations - contentElements:(NSMutableArray*)elements + template:(GSWElement*)template { if ((self=[super initWithName:@"body" associations:associations - contentElements:elements])) + template:template])) { }; return self;