#REFACTORING by cg
authorClaus Gittinger <cg@exept.de>
Wed, 10 Jul 2019 18:39:27 +0200
changeset 24418 24eb2af1ca29
parent 24417 03b083548da2
child 24419 d3a56dbbf696
#REFACTORING by cg class: ApplicationDefinition class changed: #validateDescription
ApplicationDefinition.st
--- a/ApplicationDefinition.st	Tue Jul 09 20:55:17 2019 +0200
+++ b/ApplicationDefinition.st	Wed Jul 10 18:39:27 2019 +0200
@@ -3668,9 +3668,9 @@
     ) do:[:sel |
         (self theMetaclass includesSelector:sel) ifFalse:[
             Dialog 
-                warn:('The %1-method is missing from the description %2!!' 
-                        bindWith:sel allBold
-                        with:self name allBold).
+                warn:'The %1-method is missing from the description %2!!' 
+                with:sel allBold
+                with:self name allBold.
             AbortSignal raise.
         ].
         (Error catch:[ self perform:sel ]) ifTrue:[
@@ -3685,6 +3685,7 @@
 
     "Modified: / 19-09-2006 / 20:17:38 / cg"
     "Modified (comment): / 31-10-2011 / 10:58:03 / cg"
+    "Modified: / 10-07-2019 / 18:38:20 / Claus Gittinger"
 ! !
 
 !ApplicationDefinition class methodsFor:'testing'!