AbstractLauncherApplication.st
changeset 18334 0047a6edbe01
parent 18193 240aaffc4453
child 18406 b29e42efb930
--- a/AbstractLauncherApplication.st	Thu Aug 09 15:50:41 2018 +0200
+++ b/AbstractLauncherApplication.st	Thu Aug 09 15:50:56 2018 +0200
@@ -479,7 +479,7 @@
                 "
                  snapshot failed for some reason (disk full, no permission etc.)
                 "
-                self warn:(resources string:'failed to save snapshot image (disk full or not writable)').
+                self warn:('Failed to save snapshot image (disk full or not writable)').
             ]
         ] ensure:[
             self restoreCursors.
@@ -487,6 +487,7 @@
     ].
 
     "Modified: / 17-07-2017 / 10:14:09 / cg"
+    "Modified: / 09-08-2018 / 15:29:26 / Claus Gittinger"
 !
 
 snapshotAndExit
@@ -514,7 +515,7 @@
              snapshot failed for some reason (disk full, no permission etc.)
              Do NOT exit in this case.
             "
-            self warn:(resources string:'failed to save snapshot image (disk full or not writable)').
+            self warn:('Failed to save snapshot image (disk full or not writable)').
         ] ifTrue:[
             "
              saveAllViews tells all views to shutdown neatly 
@@ -533,6 +534,7 @@
     ].
 
     "Modified: / 17-07-2017 / 10:43:22 / cg"
+    "Modified: / 09-08-2018 / 15:29:36 / Claus Gittinger"
 ! !
 
 !AbstractLauncherApplication methodsFor:'drag & drop'!