JsValueIE6 now queries for IUnknown to determine unique pointer, per COM rules. This makes JavaScriptObject$ identity match JavaScript object identity more closely.
Found by: ecc
Suggested by: bruce
Review by: bruce
git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@2029 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/dev/windows/src/com/google/gwt/dev/shell/ie/JsValueIE6.java b/dev/windows/src/com/google/gwt/dev/shell/ie/JsValueIE6.java
index 7682c8f..175d3e9 100644
--- a/dev/windows/src/com/google/gwt/dev/shell/ie/JsValueIE6.java
+++ b/dev/windows/src/com/google/gwt/dev/shell/ie/JsValueIE6.java
@@ -154,7 +154,13 @@
@Override
public int getJavaScriptObjectPointer() {
if (isJavaScriptObject()) {
- return variant.getDispatch().getAddress();
+ // The canonical pointer is obtained by QI'ing for IUnknown.
+ int[] ppvObject = new int[1];
+ variant.getDispatch().QueryInterface(COM.IIDIUnknown, ppvObject);
+ int pvObject = ppvObject[0];
+ // Release the returned pointer.
+ COM.VtblCall(2, pvObject);
+ return pvObject;
} else {
return 0;
}