refadctored intention revealing code:
authorClaus Gittinger <cg@exept.de>
Thu, 14 Apr 2005 11:16:33 +0200
changeset 6251 de1297cac10e
parent 6250 5b0673ccff1c
child 6252 24c54ab76618
refadctored intention revealing code: ... not ifTrue: ... ifFalse: ---> ... ifFalse: ... iftrue:
AbstractSettingsApplication.st
--- a/AbstractSettingsApplication.st	Thu Apr 14 11:13:31 2005 +0200
+++ b/AbstractSettingsApplication.st	Thu Apr 14 11:16:33 2005 +0200
@@ -5217,9 +5217,9 @@
 enablePasswordCheck
 
     enablePasswordCheck isNil ifTrue:[
-        self hasWindowMigrationServer not ifTrue:[
+        self hasWindowMigrationServer ifFalse:[
             enablePasswordCheck := false asValue.
-        ] ifFalse:[
+        ] ifTrue:[
             enablePasswordCheck := self windowMigrationEnabled.
         ].
     ].
@@ -11256,5 +11256,5 @@
 !AbstractSettingsApplication class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractSettingsApplication.st,v 1.193 2005-04-14 09:13:18 cg Exp $'
-! !
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractSettingsApplication.st,v 1.194 2005-04-14 09:16:33 cg Exp $'
+! !