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
parent 94393318f6
commit c724c47c60
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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);