Migrated to C style comments.

This commit is contained in:
Andrey Hristov 2003-01-14 20:24:40 +00:00
parent 74e34d1657
commit 05ff5da32b
6 changed files with 140 additions and 112 deletions

View file

@ -183,12 +183,12 @@ xmlNodePtr check_and_resolve_href(xmlNodePtr data)
href = get_attribute(data->properties, "href");
if(href)
{
// Internal href try and find node
/* Internal href try and find node */
if(href->children->content[0] == '#')
{
ret = get_node_with_attribute_recursive(data->doc->children, NULL, "id", &href->children->content[1]);
}
// External href....?
/* External href....? */
}
return ret;