*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Fri, 11 Jul 2008 20:51:19 +0200
changeset 3473 6bc7203cb7b7
parent 3472 20087c3d9dda
child 3474 cde8a45f74f0
*** empty log message ***
FilenameWidgetWithHistory.st
--- a/FilenameWidgetWithHistory.st	Fri Jul 11 17:50:37 2008 +0200
+++ b/FilenameWidgetWithHistory.st	Fri Jul 11 20:51:19 2008 +0200
@@ -68,7 +68,11 @@
 !FilenameWidgetWithHistory methodsFor:'accessing'!
 
 historyList
-    ^ #('a' 'b' 'c')
+    ^ history ? #()
+!
+
+historyList:aCollection
+    history := aCollection
 !
 
 model
@@ -183,5 +187,5 @@
 !FilenameWidgetWithHistory class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/FilenameWidgetWithHistory.st,v 1.5 2008-07-11 15:50:37 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/FilenameWidgetWithHistory.st,v 1.6 2008-07-11 18:51:19 cg Exp $'
 ! !