+2006-06-04 Helge Hess <helge.hess@opengroupware.org>
+
+ * DOMElement.m: added missing -localName implementation (v4.5.21)
+
2005-08-17 Helge Hess <helge.hess@opengroupware.org>
* GNUmakefile: removed duplicate definition of EDOM.h (v4.5.20)
/*
- Copyright (C) 2000-2005 SKYRIX Software AG
+ Copyright (C) 2000-2006 SKYRIX Software AG
+ Copyright (C) 2006 Helge Hess
This file is part of SOPE.
- (NSString *)tagName {
return self->tagName;
}
+- (NSString *)localName {
+ return self->tagName;
+}
- (void)setPrefix:(NSString *)_prefix {
id old = self->prefix;
}
objs[0] = _localName;
- objs[1] = _ns ? _ns : (id)null;
+ objs[1] = _ns ? _ns : (NSString *)null;
key = [NSArray arrayWithObjects:objs count:2];
return [self->keyToAttribute objectForKey:key] ? YES : NO;
}
objs[0] = _localName;
- objs[1] = _ns ? _ns : (id)null;
+ objs[1] = _ns ? _ns : (NSString *)null;
key = [NSArray arrayWithObjects:objs count:2];
return [self->keyToAttribute objectForKey:key];