#REFACTORING by cg
authorClaus Gittinger <cg@exept.de>
Wed, 10 Jul 2019 18:37:01 +0200
changeset 18880 2ada87d888e3
parent 18879 c3dfbe56d17e
child 18881 18f101ba7130
#REFACTORING by cg class: Tools::NewClassWizardDialog changed: #openNamespaceChooser use warn:with:
Tools__NewClassWizardDialog.st
--- a/Tools__NewClassWizardDialog.st	Wed Jul 10 18:34:28 2019 +0200
+++ b/Tools__NewClassWizardDialog.st	Wed Jul 10 18:37:01 2019 +0200
@@ -937,7 +937,7 @@
         "/ exists
     ] ifFalse:[
         (existing notNil) ifTrue:[
-            Dialog warn:('"%1" is already defined, but not a namespace' bindWith:namespaceString).
+            Dialog warn:'"%1" is already defined, but not a namespace' with:namespaceString.
             ^ self
         ].
     ].
@@ -947,6 +947,7 @@
     self nameSpaceHolder value:namespaceString.
 
     "Modified: / 19-08-2011 / 01:00:52 / cg"
+    "Modified: / 10-07-2019 / 18:34:42 / Claus Gittinger"
 !
 
 openPackageChooser