TopView.st
changeset 5718 7013638adb71
parent 5717 a63f96cbb291
child 5719 014212ef8765
--- a/TopView.st	Thu Mar 03 15:25:31 2011 +0100
+++ b/TopView.st	Thu Mar 03 15:25:55 2011 +0100
@@ -891,16 +891,16 @@
 
 isPopUpView
     "return true if I am a popup view.
-     (i.e. I want to come up without decoration and popUp to top immediately)"
+     (i.e. I want to come up without any decoration and popUp to top immediately)"
 
     type isInteger ifTrue:[
-	^ (type bitAnd:WindowTypeMask) == TypePopUp
+        ^ (type bitAnd:WindowTypeMask) == TypePopUp
     ].
     "/ the nonInteger handling code is for backward compatibility only.
     ^ type == #popup
 
-    "Created: 28.2.1997 / 22:12:30 / cg"
-    "Modified: 28.2.1997 / 22:37:01 / cg"
+    "Created: / 28-02-1997 / 22:12:30 / cg"
+    "Modified: / 03-03-2011 / 15:00:35 / cg"
 !
 
 isScreenDialog
@@ -1392,11 +1392,11 @@
 !TopView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/TopView.st,v 1.135 2011-03-03 14:25:31 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/TopView.st,v 1.136 2011-03-03 14:25:55 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview/TopView.st,v 1.135 2011-03-03 14:25:31 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/TopView.st,v 1.136 2011-03-03 14:25:55 cg Exp $'
 ! !
 
 TopView initialize!