TopView.st
changeset 5656 b12406d419b3
parent 5625 09972b8ce40a
child 5657 6dd2915a226b
--- a/TopView.st	Wed Nov 24 11:18:07 2010 +0100
+++ b/TopView.st	Wed Dec 01 12:16:06 2010 +0100
@@ -905,13 +905,15 @@
 
 isScreenDialog
     "return true if I am a screen dialog view.
-     (i.e. I want to come up anove all other windows"
+     (i.e. I want to come up above all other windows)"
 
     type isInteger ifTrue:[
-	^ (type bitAnd:WindowTypeMask) == TypeScreenDialog
+        ^ (type bitAnd:WindowTypeMask) == TypeScreenDialog
     ].
     "/ the nonInteger handling code is for backward compatibility only.
     ^ false
+
+    "Modified: / 01-12-2010 / 12:15:59 / cg"
 !
 
 isSlave
@@ -1382,11 +1384,11 @@
 !TopView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/TopView.st,v 1.130 2010-10-22 12:55:58 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/TopView.st,v 1.131 2010-12-01 11:16:06 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview/TopView.st,v 1.130 2010-10-22 12:55:58 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/TopView.st,v 1.131 2010-12-01 11:16:06 cg Exp $'
 ! !
 
 TopView initialize!