This bug is about JavaDOM building on the tip. These changes make it so

you can build JavaDOM with the tip as of 20 Sept 2000.

M dom/jni/javaDOMGlobals.h

  changed nsString2 to nsString

M dom/jni/org_mozilla_dom_NodeImpl.cpp

  nsIDOMNode::Supports is now nsIDOMNode::IsSupported().
This commit is contained in:
edburns%acm.org 2000-09-20 21:47:42 +00:00
Родитель 81e6727e6c
Коммит 055d99c6fc
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -25,7 +25,7 @@
#include "jni.h"
#include "prclist.h"
#include "nsError.h"
#include "nsString2.h"
#include "nsString.h"
// workaround for bug 30927
#ifdef ERROR

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

@ -964,7 +964,7 @@ JNIEXPORT jboolean JNICALL Java_org_mozilla_dom_NodeImpl_supports
}
PRBool ret = PR_FALSE;
nsresult rv = node->Supports(*feature, *version, &ret);
nsresult rv = node->IsSupported(*feature, *version, &ret);
nsString::Recycle(feature);
nsString::Recycle(version);