Changed HT_LayoutComplete() to accept different parameters.

This commit is contained in:
nisheeth%netscape.com 1998-09-15 18:36:03 +00:00
Родитель 68b7d77c72
Коммит 546c1e738c
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -1477,12 +1477,12 @@ HT_AddToContainer (HT_Resource container, char *url, char *optionalTitle)
PR_PUBLIC_API(void)
HT_LayoutComplete(MWContext *cx, char *url)
HT_LayoutComplete(TagList *metaTags, char *url)
{
XP_ASSERT(cx != NULL);
XP_ASSERT(metaTags != NULL);
XP_ASSERT(url != NULL);
if ((cx != NULL) && (url != NULL))
if ((metaTags != NULL) && (url != NULL))
{
/* if url exists in RDF graph, then get any META tags
for this document from the context, and save them */