ListView.st
changeset 6213 19e9bfd31785
parent 6186 f0026b792a12
child 6214 631877afef09
--- a/ListView.st	Mon Oct 09 09:16:56 2017 +0200
+++ b/ListView.st	Thu Oct 12 13:19:05 2017 +0200
@@ -457,19 +457,23 @@
 !ListView class methodsFor:'defaults'!
 
 defaultTabPositions
-    "return an array containing the styleSheets default tab positions"
+    "return an array containing the styleSheet's default tab positions"
 
     ^ DefaultTabPositions ? self tab4Positions
+
+    "Modified (comment): / 12-10-2017 / 13:15:41 / cg"
 !
 
 defaultTabPositions:aVector
-    "set the array containing the styleSheets tab positions"
+    "set the array containing the styleSheet's tab positions"
 
     DefaultTabPositions := aVector
 
     "
      ListView defaultTabPositions:(ListView tab4Positions)
     "
+
+    "Modified (comment): / 12-10-2017 / 13:15:32 / cg"
 !
 
 tab4Positions
@@ -505,19 +509,23 @@
 !
 
 userDefaultTabPositions
-    "return an array containing the users default tab positions"
+    "return an array containing the user's default tab positions"
 
     ^ UserDefaultTabPositions
+
+    "Modified (comment): / 12-10-2017 / 13:15:19 / cg"
 !
 
 userDefaultTabPositions:aVector
-    "set the array containing the users tab positions"
+    "set the array containing the user's tab positions"
 
     UserDefaultTabPositions := aVector
 
     "
      self userDefaultTabPositions:(self tab4Positions)
     "
+
+    "Modified (comment): / 12-10-2017 / 13:15:13 / cg"
 ! !
 
 !ListView methodsFor:'accessing'!