#REFACTORING by stefan
authorStefan Vogel <sv@exept.de>
Fri, 17 May 2019 16:36:30 +0200
changeset 18762 63a44a9fdc42
parent 18761 a93fa8f9a2a3
child 18763 6a3d3a6ac24e
#REFACTORING by stefan Sanitize BlockValues class: WorkspaceApplication changed: #manageSnippets
WorkspaceApplication.st
--- a/WorkspaceApplication.st	Thu May 16 02:04:02 2019 +0200
+++ b/WorkspaceApplication.st	Fri May 17 16:36:30 2019 +0200
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 2001 by eXept Software AG
               All Rights Reserved
@@ -3007,7 +3005,7 @@
             ].
         ].
 
-    hasSelectionHolder := BlockValue with:[:m | m value notNil] argument:selectedSnippetHolder.
+    hasSelectionHolder := BlockValue with:[:m | m notNil] argument:selectedSnippetHolder.
     removeEnabledHolder := hasSelectionHolder.
     pasteEnabledHolder := hasSelectionHolder.
     defineEnabledHolder := 
@@ -3110,6 +3108,8 @@
     selectedSnippetsKeyHolder onChangeEvaluate:[defineEnabledHolder recomputeValue ].
 
     self openDialogInterface:#manageSnippetsDialogSpec withBindings:bindings
+
+    "Modified: / 17-05-2019 / 15:59:10 / Stefan Vogel"
 !
 
 menuSQLConnect