*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Wed, 14 Mar 2007 09:13:00 +0100
changeset 2008 ca9dbd1919ee
parent 2007 07df0726abfd
child 2009 23dd8ba75767
*** empty log message ***
Explainer.st
--- a/Explainer.st	Tue Mar 13 18:16:44 2007 +0100
+++ b/Explainer.st	Wed Mar 14 09:13:00 2007 +0100
@@ -499,14 +499,14 @@
             shortText ifTrue:[
                 ^ stringText , ' is a class instVar in ' , clsName , '.'
             ].
-            ^ stringText, ' is a class instance variable in ' , clsName , '.'
+            ^ stringText, ' is a class instance variable inherited from ' , clsName , '.'
         ].
 
         clsName := c name.
         shortText ifTrue:[
             ^ stringText , ' is an instVar in ' , clsName , '.'
         ].
-        ^ stringText , ' is an instance variable in ' , clsName , '.'
+        ^ stringText , ' is an instance variable inherited from ' , clsName , '.'
     ].
 
 "/    variables := aClass allInstVarNames.
@@ -1234,5 +1234,5 @@
 !Explainer class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/Explainer.st,v 1.82 2007-03-06 13:22:13 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/Explainer.st,v 1.83 2007-03-14 08:13:00 cg Exp $'
 ! !