use #and: - not #& you lazy bone, you
authorClaus Gittinger <cg@exept.de>
Tue, 28 Oct 2003 21:25:36 +0100
changeset 1760 8419c463c4f6
parent 1759 5b8c7d049185
child 1761 7fe973989f81
use #and: - not #& you lazy bone, you
UIPainter.st
--- a/UIPainter.st	Tue Oct 28 20:28:46 2003 +0100
+++ b/UIPainter.st	Tue Oct 28 21:25:36 2003 +0100
@@ -2746,17 +2746,17 @@
     (self aspectFor:#superclassNameChannel) value:superClassName.
 
     self painter 
-	    className:clsName 
-	    superclassName:superClassName
-	    selector:(selector ? '').
+            className:clsName 
+            superclassName:superClassName
+            selector:(selector ? '').
 
     self specClass:clsName.
     specSelector := (selector ? '').
     specSuperclass := superClassName.
 
-    specClass notNil & selector notNil ifTrue:[
-	self addToHistory: (specClass, ' ', specSelector) -> #loadFromMessage:.
-	self updateInfoLabel
+    (specClass notNil and:[ selector notNil ]) ifTrue:[
+        self addToHistory: (specClass, ' ', specSelector) -> #loadFromMessage:.
+        self updateInfoLabel
     ].
 
     "Modified: / 5.2.1998 / 09:44:58 / stefan"