1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-01-11 05:17:37 +03:00

Changed 'namespace' to 'nameSpace' to workaround c++ losage where 'namespace'

is a reserved keyword of the compiler.
This commit is contained in:
Ramiro Estrugo 1999-12-15 04:32:07 +00:00
parent 10a2c6532a
commit bfce377579
5 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
Tue Dec 14 20:30:34 PST 1999 Ramiro Estrugo <ramiro@eazel.com>
* SAX.h, tree.h : changed 'namespace' to 'nameSpace' to workaround
c++ losage.
Sun Dec 12 13:08:15 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
* configure.in, doc/xml.html : bumped to 1.8.0

2
SAX.h
View File

@ -93,7 +93,7 @@ void setNamespace (void *ctx,
const xmlChar *name);
xmlNsPtr getNamespace (void *ctx);
int checkNamespace (void *ctx,
xmlChar *namespace);
xmlChar *nameSpace);
void namespaceDecl (void *ctx,
const xmlChar *href,
const xmlChar *prefix);

View File

@ -93,7 +93,7 @@ void setNamespace (void *ctx,
const xmlChar *name);
xmlNsPtr getNamespace (void *ctx);
int checkNamespace (void *ctx,
xmlChar *namespace);
xmlChar *nameSpace);
void namespaceDecl (void *ctx,
const xmlChar *href,
const xmlChar *prefix);

View File

@ -465,7 +465,7 @@ xmlChar * xmlGetProp (xmlNodePtr node,
const xmlChar *name);
xmlChar * xmlGetNsProp (xmlNodePtr node,
const xmlChar *name,
const xmlChar *namespace);
const xmlChar *nameSpace);
xmlNodePtr xmlStringGetNodeList (xmlDocPtr doc,
const xmlChar *value);
xmlNodePtr xmlStringLenGetNodeList (xmlDocPtr doc,

2
tree.h
View File

@ -465,7 +465,7 @@ xmlChar * xmlGetProp (xmlNodePtr node,
const xmlChar *name);
xmlChar * xmlGetNsProp (xmlNodePtr node,
const xmlChar *name,
const xmlChar *namespace);
const xmlChar *nameSpace);
xmlNodePtr xmlStringGetNodeList (xmlDocPtr doc,
const xmlChar *value);
xmlNodePtr xmlStringLenGetNodeList (xmlDocPtr doc,