#REFACTORING by cg
authorClaus Gittinger <cg@exept.de>
Wed, 10 Jul 2019 18:32:03 +0200
changeset 4460 044252f25c7d
parent 4459 996c5e249b27
child 4461 dc5e1bc4696d
#REFACTORING by cg class: ProjectProblem::ProjectDefinitionDoesNotExist changed: #doTryToLoadMissingPackage use warn:with:
ProjectProblem.st
--- a/ProjectProblem.st	Wed Jul 10 18:21:08 2019 +0200
+++ b/ProjectProblem.st	Wed Jul 10 18:32:03 2019 +0200
@@ -2542,8 +2542,10 @@
 
 doTryToLoadMissingPackage
     (Smalltalk loadPackage:missing) ifFalse:[
-        Dialog warn:('Failed to load the missing package %1' bindWith:missing)
+        Dialog warn:'Failed to load the missing package %1' with:missing
     ].
+
+    "Modified: / 10-07-2019 / 18:30:31 / Claus Gittinger"
 !
 
 fixes