class: Cursor
authorStefan Vogel <sv@exept.de>
Thu, 25 Sep 2014 21:45:05 +0200
changeset 6577 4639bb86cdfa
parent 6576 9c248407a009
child 6578 19315c959eee
class: Cursor changed: #initializeNewCursors #platformName = 'Win32' --> #isWindowsPlatform
Cursor.st
--- a/Cursor.st	Tue Sep 23 13:36:50 2014 +0200
+++ b/Cursor.st	Thu Sep 25 21:45:05 2014 +0200
@@ -411,7 +411,7 @@
     Screen isNil ifTrue:[
         isWindows := OperatingSystem isMSWINDOWSlike.
     ] ifFalse:[
-        isWindows := Screen platformName = 'WIN32'.
+        isWindows := Screen isWindowsPlatform.
     ].
 
     HandCursor :=   
@@ -3532,11 +3532,11 @@
 !Cursor class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/Cursor.st,v 1.113 2014-06-14 09:04:01 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/Cursor.st,v 1.114 2014-09-25 19:45:05 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview/Cursor.st,v 1.113 2014-06-14 09:04:01 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/Cursor.st,v 1.114 2014-09-25 19:45:05 stefan Exp $'
 ! !