WinWorkstation.st
changeset 8583 c06d2b2b5457
parent 8582 ad7bcafe8b95
child 8586 8cd1ff835443
--- a/WinWorkstation.st	Fri Nov 09 09:53:13 2018 +0100
+++ b/WinWorkstation.st	Fri Nov 09 09:55:20 2018 +0100
@@ -17168,12 +17168,10 @@
         (OperatingSystem 
             executeCommand:('"%1" %2'
                 bindWith:self nativeFileDialogBinaryPath 
-                with:uuidString)
-            outputTo:Transcript
-            errorTo:Transcript) ifFalse:[
-                self _primTriggerNativeFileDialogInitializeErrorByDataAddress:dataAddress.
-                'native file dialog via could not be initialized' errorPrintCR.
-            ].
+                with:uuidString)) ifFalse:[
+                    self _primTriggerNativeFileDialogInitializeErrorByDataAddress:dataAddress.
+                    'native file dialog via could not be initialized' errorPrintCR.
+                ].
     ] fork.
 
     ^ NativeFileDialogCreationData new
@@ -17182,7 +17180,7 @@
         yourself
 
     "Created: / 08-11-2018 / 08:54:53 / sr"
-    "Modified: / 09-11-2018 / 09:52:52 / sr"
+    "Modified: / 09-11-2018 / 09:54:46 / sr"
 !
 
 _primTriggerNativeFileDialogInitializeErrorByDataAddress:dataAddress
@@ -17248,15 +17246,15 @@
 
     "test the new implementation via process,
      avoid change of current directory"
-"/    ^ self 
-"/        _nativeFileDialogWithTitle:dialogTitleArg
-"/        defaultFilename:defaultFilenameArg
-"/        owningTopView:owningTopView
-"/        filter:filterStringOrArrayOfPairs
-"/        filterIndex:filterIndexArg
-"/        trueForSave:trueForSave
-"/        trueForMultiSelect:trueForMultiSelect         
-"/        trueForPromptOverwrite:trueForPromptOverwrite.     
+    ^ self 
+        _nativeFileDialogWithTitle:dialogTitleArg
+        defaultFilename:defaultFilenameArg
+        owningTopView:owningTopView
+        filter:filterStringOrArrayOfPairs
+        filterIndex:filterIndexArg
+        trueForSave:trueForSave
+        trueForMultiSelect:trueForMultiSelect         
+        trueForPromptOverwrite:trueForPromptOverwrite.     
 
     dialogTitleArg notEmptyOrNil ifTrue:[
         dialogTitle := dialogTitleArg asUnicode16String.
@@ -17505,7 +17503,7 @@
     "
 
     "Created: / 25-10-2018 / 10:54:52 / sr"
-    "Modified: / 08-11-2018 / 16:58:13 / sr"
+    "Modified: / 09-11-2018 / 09:55:12 / sr"
 !
 
 primCloseNativeFileDialogByDataAddress:dataAddress