MenuItem.st
changeset 3178 ced60e8c83fe
parent 3033 0d05dd38b0e6
child 3212 a5ee318ee18d
--- a/MenuItem.st	Tue May 28 09:59:49 2013 +0200
+++ b/MenuItem.st	Tue May 28 20:41:48 2013 +0200
@@ -374,17 +374,19 @@
 !
 
 indication
-    "value of the items on/off indicator (CheckToggle)"
+    "value of the items on/off indicator (CheckToggle).
+     Usually a valueHolder"
     
     ^ indication
 
     "Created: 25.2.1997 / 20:59:28 / cg"
 !
 
-indication:something 
-    "value of the items on/off indicator (CheckToggle)"
+indication:someValueHolder 
+    "value of the items on/off indicator (CheckToggle).
+     someValueHolder is usually a value holder"
     
-    indication := something.
+    indication := someValueHolder.
 
     "Created: 25.2.1997 / 20:59:28 / cg"
 !
@@ -1097,9 +1099,10 @@
 !MenuItem class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/MenuItem.st,v 1.100 2012-11-03 08:38:56 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/MenuItem.st,v 1.101 2013-05-28 18:41:48 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview2/MenuItem.st,v 1.100 2012-11-03 08:38:56 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/MenuItem.st,v 1.101 2013-05-28 18:41:48 cg Exp $'
 ! !
+