BookmarkListEditor.st
branchjv
changeset 16213 f667b5b42a11
parent 15566 184cea584be5
parent 16197 b33e0a5d1c3e
--- a/BookmarkListEditor.st	Thu Mar 24 07:22:36 2016 +0000
+++ b/BookmarkListEditor.st	Sat Mar 26 07:59:34 2016 +0000
@@ -25,6 +25,8 @@
 "
 "{ Package: 'stx:libtool' }"
 
+"{ NameSpace: Smalltalk }"
+
 ApplicationModel subclass:#BookmarkListEditor
 	instanceVariableNames:'selectionHolder bookmarkListHolder'
 	classVariableNames:''
@@ -367,18 +369,8 @@
 bookmarkListHolder
     <resource: #uiAspect>
 
-    "automatically generated by UIPainter ..."
-
-    "*** the code below creates a default model when invoked."
-    "*** (which may not be the one you wanted)"
-    "*** Please change as required and accept it in the browser."
-    "*** (and replace this comment by something more useful ;-)"
-
     bookmarkListHolder isNil ifTrue:[
         bookmarkListHolder := ValueHolder new.
-"/ if your app needs to be notified of changes, uncomment one of the lines below:
-"/       bookmarkListHolder addDependent:self.
-"/       bookmarkListHolder onChangeSend:#bookmarkListHolderChanged to:self.
     ].
     ^ bookmarkListHolder.
 
@@ -410,18 +402,8 @@
 selectionHolder
     <resource: #uiAspect>
 
-    "automatically generated by UIPainter ..."
-
-    "*** the code below creates a default model when invoked."
-    "*** (which may not be the one you wanted)"
-    "*** Please change as required and accept it in the browser."
-    "*** (and replace this comment by something more useful ;-)"
-
     selectionHolder isNil ifTrue:[
         selectionHolder := ValueHolder new.
-"/ if your app needs to be notified of changes, uncomment one of the lines below:
-"/       selectionHolder addDependent:self.
-"/       selectionHolder onChangeSend:#selectionHolderChanged to:self.
     ].
     ^ selectionHolder.
 ! !
@@ -546,10 +528,10 @@
 !BookmarkListEditor class methodsFor:'documentation'!
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/BookmarkListEditor.st,v 1.4 2014-04-08 16:39:47 cg Exp $'
+    ^ '$Header$'
 !
 
 version_SVN
-    ^ '$Id: BookmarkListEditor.st,v 1.4 2014-04-08 16:39:47 cg Exp $'
+    ^ '$Id$'
 ! !