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().


git-svn-id: svn://10.0.0.236/trunk@79657 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
edburns%acm.org
2000-09-20 21:47:42 +00:00
parent dcc02d3f9e
commit ef806124bd
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);