< prev index next >

src/solaris/classes/sun/awt/X11/XBaseWindow.java

Print this page

        

@@ -671,11 +671,11 @@
             throw new IllegalArgumentException("WM_CLASS_NAME consists of exactly two strings");
         }
         XToolkit.awtLock();
         try {
             XAtom xa = XAtom.get(XAtom.XA_WM_CLASS);
-            xa.setProperty8(getWindow(), cl[0] + '\0' + cl[1]);
+            xa.setProperty8(getWindow(), cl[0] + '\0' + cl[1] + '\0');
         } finally {
             XToolkit.awtUnlock();
         }
     }
 
< prev index next >