refactored intention revealing code:
authorClaus Gittinger <cg@exept.de>
Thu, 14 Apr 2005 11:11:54 +0200
changeset 4378 29da8415352c
parent 4377 d71b81b9797f
child 4379 02ac555f6b0a
refactored intention revealing code: ... not ifTrue: -> ... ifFalse:
WindowGroup.st
--- a/WindowGroup.st	Tue Apr 12 17:15:52 2005 +0200
+++ b/WindowGroup.st	Thu Apr 14 11:11:54 2005 +0200
@@ -1061,7 +1061,7 @@
         ].
     ].
 
-oldFocusScheme not ifTrue:[
+oldFocusScheme ifFalse:[
     previousGroup notNil ifTrue:[ 
         prevFocus := previousGroup focusView.
     ].
@@ -2769,7 +2769,7 @@
 !WindowGroup class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/WindowGroup.st,v 1.274 2005-04-04 10:32:49 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/WindowGroup.st,v 1.275 2005-04-14 09:11:54 cg Exp $'
 ! !
 
 WindowGroup initialize!