WinWorkstation.st
changeset 8571 8d5cf61f7ac5
parent 8570 a1ee977b1a24
child 8572 8bebfb5a72b1
--- a/WinWorkstation.st	Thu Nov 08 14:23:59 2018 +0100
+++ b/WinWorkstation.st	Thu Nov 08 14:32:11 2018 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
 COPYRIGHT (c) 1996 by Claus Gittinger
               All Rights Reserved
@@ -2189,7 +2187,7 @@
                     }
                     goto again;
                 }
-                /* fail evtl. später ändern und in st verzögert aufrufen
+                /* fail evtl. später ändern und in st verzögert aufrufen
                 */
                 console_fprintf(stderr, "WinWorkstation [info]: UnregisterClass %s failed.\n",(char*)ev->ev_arg1);
             }
@@ -17130,7 +17128,9 @@
      the file dialog needs to do its cleanup(s).
      otherwise we get frozen views... etc."
     [ 
-        OperatingSystem executeCommand:'D:\Dropbox\Codingware\C++\FileDialogWithSharedMemory\bin\Release\FileDialogWithSharedMemory.exe ', uuidString.
+        (OperatingSystem executeCommand:'D:\Dropbox\Codingware\C++\FileDialogWithSharedMemory\bin\Release\FileDialogWithSharedMemory.exe ', uuidString) ifFalse:[
+            'native file dialog via separated process could not be initialized' errorPrintCR.
+        ].
     ] fork.
 
     ^ NativeFileDialogCreationData new
@@ -17139,7 +17139,7 @@
         yourself
 
     "Created: / 08-11-2018 / 08:54:53 / sr"
-    "Modified: / 08-11-2018 / 14:19:56 / sr"
+    "Modified: / 08-11-2018 / 14:31:33 / sr"
 !
 
 nativeFileDialogWithTitle:dialogTitleArg
@@ -20274,7 +20274,7 @@
     }
 %}
     "
-     (StandardSystemView new label:'äöü') open
+     (StandardSystemView new label:'äöü') open
     "
 !