comments
authorClaus Gittinger <cg@exept.de>
Fri, 30 Sep 2005 10:45:17 +0200
changeset 4424 c4154f4897e1
parent 4423 dc94d8e838e8
child 4425 7b2d529158e1
comments
TopView.st
--- a/TopView.st	Wed Sep 21 11:05:35 2005 +0200
+++ b/TopView.st	Fri Sep 30 10:45:17 2005 +0200
@@ -890,7 +890,7 @@
     "added for MS-windows - much like raise.
      Raise/Activate seem to work only within my own (ST/X)-windows;
      they do not raise one of my views above another (for example: command.com)-window.
-     Can anyone tell me what the difference between raise, activate and setForefround 
+     Can anyone tell me what the difference between raise, activate and setForeground 
      really is (I mean really - not what is written in the crappy documentation)"
 
     drawableId isNil ifTrue:[self create].
@@ -955,10 +955,10 @@
 !
 
 raise
-    "kludge for MS-windows.
+    "MS-windows:
      Raise/Activate seem to work only within my own (ST/X)-windows;
      they do not raise one of my views above another (for example: command.com)-window.
-     Can anyone tell me what the difference between raise, activate and setForefround 
+     Can anyone tell me what the difference between raise, activate and setForeground 
      really is (I mean really - not what is written in the crappy documentation)"
 
     drawableId isNil ifTrue:[self create].
@@ -984,7 +984,7 @@
     "added for MS-windows - much like raise + focus.
      Raise/Activate seem to work only within my own (ST/X)-windows;
      they do not raise one of my views above another (for example: command.com)-window.
-     Can anyone tell me what the difference between raise, activate and setForefround 
+     Can anyone tell me what the difference between raise, activate and setForeground 
      really is (I mean really - not what is written in the crappy documentation) ?"
 
     drawableId isNil ifTrue:[self create].
@@ -1218,7 +1218,7 @@
 !TopView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/TopView.st,v 1.107 2005-07-19 14:10:11 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/TopView.st,v 1.108 2005-09-30 08:45:17 cg Exp $'
 ! !
 
 TopView initialize!