*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Mon, 17 Sep 2001 11:43:31 +0200
changeset 3505 90c5af547609
parent 3504 b53fe2fa6370
child 3506 44a6cf8203cc
*** empty log message ***
WinWorkstation.st
--- a/WinWorkstation.st	Mon Sep 17 11:32:48 2001 +0200
+++ b/WinWorkstation.st	Mon Sep 17 11:43:31 2001 +0200
@@ -12658,7 +12658,7 @@
 		    }
 		}
 	    }
-printf("reallen = %d\n; needUnicode=%d", realLen, needUnicode);
+printf("reallen = %d; needUnicode=%d\n", realLen, needUnicode);
 	    if (! needUnicode) {
 		s = __MKEMPTYSTRING(realLen);
 		if (s != nil) {
@@ -12676,7 +12676,7 @@
 	            }
 		}
 	    } else {
-	        s = __MKBYTEARRAY(realLen * 2);
+	        s = __BYTEARRAY_NEW_INT(realLen * 2);
 		if (s != nil) {
 	            __qClass(s) = @global(UnicodeString);
 	            for (w_p = (WIDECHAR *)__stringVal(s); len; ) {
@@ -13910,6 +13910,6 @@
 !WinWorkstation class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/WinWorkstation.st,v 1.196 2001-09-17 09:32:48 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/WinWorkstation.st,v 1.197 2001-09-17 09:43:31 cg Exp $'
 ! !
 WinWorkstation initialize!