+2005-08-07 Helge Hess <helge.hess@opengroupware.org>
+
+ * DOMDocumentFragment.m: fixed some prototypes (v4.5.19)
+
2005-07-30 Helge Hess <helge.hess@opengroupware.org>
* DOMElement.m: evaluate KVC keys starting with a slash '/' as query
return DOM_DOCUMENT_FRAGMENT_NODE;
}
-- (id)attributes {
+- (id<NSObject,DOMNamedNodeMap>)attributes {
return nil;
}
/* parent node */
-- (id)parentNode {
+- (id<NSObject,DOMNode>)parentNode {
return nil;
}
-- (id)nextSibling {
+- (id<NSObject,DOMNode>)nextSibling {
return nil;
}
-- (id)previousSibling {
+- (id<NSObject,DOMNode>)previousSibling {
return nil;
}
# version file
-SUBMINOR_VERSION:=18
+SUBMINOR_VERSION:=19