6907881: Different undesired behavior for entering Asian characters in Windows IME starting with Java 6.0
authorpeytoia
Tue, 30 Mar 2010 21:16:41 +0900
changeset 5138 29949600bb1f
parent 5137 9a7b933f58ae
child 5139 60b266b1fea0
child 5280 eb7aefd114b4
6907881: Different undesired behavior for entering Asian characters in Windows IME starting with Java 6.0 Reviewed-by: okutsu
jdk/src/windows/native/sun/windows/awt_Component.cpp
--- a/jdk/src/windows/native/sun/windows/awt_Component.cpp	Tue Mar 30 18:35:47 2010 +0900
+++ b/jdk/src/windows/native/sun/windows/awt_Component.cpp	Tue Mar 30 21:16:41 2010 +0900
@@ -1,5 +1,5 @@
 /*
- * Copyright 1996-2009 Sun Microsystems, Inc.  All Rights Reserved.
+ * Copyright 1996-2010 Sun Microsystems, Inc.  All Rights Reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -3707,8 +3707,7 @@
     if (hIMC == NULL) {
         return;
     }
-    COMPOSITIONFORM cf = {CFS_POINT, {0, r.bottom}, NULL};
-    // Place the composition window right below the client Window
+    COMPOSITIONFORM cf = {CFS_DEFAULT, {0, 0}, {0, 0, 0, 0}};
     ImmSetCompositionWindow(hIMC, &cf);
 }