#BUGFIX by Micha
authorMichael Beyl <mb@exept.de>
Tue, 14 Aug 2018 12:42:45 +0200
changeset 4169 4fea9044e433
parent 4168 0656fd9bc4b2
child 4170 b150f3f83b13
#BUGFIX by Micha class: ApplicationModel changed: #translateString: don't return nil
ApplicationModel.st
--- a/ApplicationModel.st	Tue Aug 14 12:30:01 2018 +0200
+++ b/ApplicationModel.st	Tue Aug 14 12:42:45 2018 +0200
@@ -4111,7 +4111,7 @@
      We use the resources as default.
      Subclasses may redefine this to use another mechanism"
 
-    aString size == 0 ifTrue:[^ nil]. 
+    aString size == 0 ifTrue:[^ '']. 
     ^ self resources stringWithCRs:aString asString
 
     "Modified: / 27-02-2017 / 13:50:46 / cg"