class: TopView
authorClaus Gittinger <cg@exept.de>
Thu, 03 Apr 2014 16:35:54 +0200
changeset 6368 0482fa46f211
parent 6367 f9b12da7f4b7
child 6369 b799ac38af53
class: TopView changed: #mapped eliminated the need to know what the platformname of the windows device is
TopView.st
--- a/TopView.st	Thu Apr 03 16:34:55 2014 +0200
+++ b/TopView.st	Thu Apr 03 16:35:54 2014 +0200
@@ -1380,7 +1380,7 @@
             self getKeyboardFocus.
         ]
     ].
-    self graphicsDevice platformName = #WIN32 ifTrue:[
+    self graphicsDevice isWindowsPlatform ifTrue:[
         self raise
     ].
     false "self isScreenDialog" ifTrue:[
@@ -1443,11 +1443,11 @@
 !TopView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/TopView.st,v 1.148 2014-02-18 17:12:37 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/TopView.st,v 1.149 2014-04-03 14:35:54 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview/TopView.st,v 1.148 2014-02-18 17:12:37 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/TopView.st,v 1.149 2014-04-03 14:35:54 cg Exp $'
 ! !