class: WindowSensor
authorClaus Gittinger <cg@exept.de>
Thu, 03 Apr 2014 16:34:01 +0200
changeset 6366 b8aa19ba1519
parent 6365 cf89c4bedea4
child 6367 f9b12da7f4b7
class: WindowSensor changed: #waitForExposeFor: eliminated the need to know what the platformname of the windows device is
WindowSensor.st
--- a/WindowSensor.st	Tue Apr 01 15:26:51 2014 +0200
+++ b/WindowSensor.st	Thu Apr 03 16:34:01 2014 +0200
@@ -3158,7 +3158,7 @@
     [
         device flush.
 
-        device platformName = 'WIN32' ifTrue:[
+        device isWindowsPlatform ifTrue:[
             "/ since this is definitely a local display,
             "/ there is no need for a long timeOut
             "/ (it should arrive fast)
@@ -3253,7 +3253,7 @@
 !WindowSensor class methodsFor:'documentation'!
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview/WindowSensor.st,v 1.283 2014-02-28 13:27:21 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/WindowSensor.st,v 1.284 2014-04-03 14:34:01 cg Exp $'
 ! !