NoteBookView.st
changeset 4682 cf030b296e21
parent 4650 a8fc26ebd488
child 4683 a7e27828e009
--- a/NoteBookView.st	Tue Dec 02 19:35:56 2014 +0100
+++ b/NoteBookView.st	Wed Dec 03 09:22:10 2014 +0100
@@ -589,12 +589,14 @@
 
     builder isNil ifTrue:[
         string := application resources string:aString.
-    ] ifFalse:[
+    ].
+    "/ commented, to avoid perform of an arbitrary selector (e.g. halt)
+    " ifFalse:[
         
         string := builder aspectAt:(aString asSymbol).
         string notNil ifTrue:[^ string ].
         string := builder resources string:aString.
-    ].
+    ]."
     ^ string ? aString
 ! !
 
@@ -3784,10 +3786,10 @@
 !NoteBookView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/NoteBookView.st,v 1.186 2014-07-09 01:25:47 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/NoteBookView.st,v 1.187 2014-12-03 08:22:10 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libwidg2/NoteBookView.st,v 1.186 2014-07-09 01:25:47 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/NoteBookView.st,v 1.187 2014-12-03 08:22:10 stefan Exp $'
 ! !