jdk/src/macosx/native/sun/awt/AWTWindow.m
changeset 14651 f032406c1e48
parent 14648 2ef7c7edb4b0
child 14753 a56a685d137f
--- a/jdk/src/macosx/native/sun/awt/AWTWindow.m	Wed Nov 21 20:42:54 2012 +0400
+++ b/jdk/src/macosx/native/sun/awt/AWTWindow.m	Tue Nov 27 17:03:19 2012 +0400
@@ -449,12 +449,13 @@
 
     NSRect frame = ConvertNSScreenRect(env, [self.nsWindow frame]);
 
-    static JNF_MEMBER_CACHE(jm_deliverMoveResizeEvent, jc_CPlatformWindow, "deliverMoveResizeEvent", "(IIII)V");
+    static JNF_MEMBER_CACHE(jm_deliverMoveResizeEvent, jc_CPlatformWindow, "deliverMoveResizeEvent", "(IIIIZ)V");
     JNFCallVoidMethod(env, platformWindow, jm_deliverMoveResizeEvent,
                       (jint)frame.origin.x,
                       (jint)frame.origin.y,
                       (jint)frame.size.width,
-                      (jint)frame.size.height);
+                      (jint)frame.size.height,
+                      (jboolean)[self.nsWindow inLiveResize]);
     (*env)->DeleteLocalRef(env, platformWindow);
 }