Set Elements to be NSXMLElementKind

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34372 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Doug Simons 2011-12-31 02:13:19 +00:00
parent 7b7b2a6f9d
commit 44de775895
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2011-12-30 Doug Simons <doug.simons@testplant.com>
* Source/NSXMLElement.m: Set Elements to be NSXMLElementKind.
2011-12-30 14:22-EST Gregory John Casamento <greg.casamento@gmail.com>
* Headers/Foundation/NSXMLDocument.h

View file

@ -45,7 +45,7 @@
- (id) initWithName: (NSString*)name URI: (NSString*)URI
{
if((self = [super init]) != nil)
if((self = [super initWithKind:NSXMLElementKind]) != nil)
{
ASSIGN(_name, name);
}