TextView.st
changeset 6373 065fd51ae5b2
parent 6358 c260ba065216
child 6375 0ee929d79a08
--- a/TextView.st	Fri Jul 06 03:32:06 2018 +0000
+++ b/TextView.st	Fri Jul 06 07:30:37 2018 +0200
@@ -2373,10 +2373,11 @@
 
     |fileNameString|
 
-    fileNameString := self selectionAsString.
+    fileNameString := self selectionAsString withoutSeparators.
     self openFileBrowserOnFileNamed:fileNameString
 
     "Modified: / 06-09-2012 / 14:47:22 / cg"
+    "Modified: / 06-07-2018 / 07:30:20 / Claus Gittinger"
 !
 
 openSaveDialog
@@ -2725,10 +2726,14 @@
 
     |urlString|
 
-    urlString := self selectionAsString.
-    OperatingSystem openApplicationForDocument:urlString operation:#open mimeType:'text/html'.
+    urlString := self selectionAsString withoutSeparators.
+    OperatingSystem 
+        openApplicationForDocument:urlString 
+        operation:#open 
+        mimeType:'text/html'.
 
     "Created: / 21-06-2018 / 17:15:27 / Claus Gittinger"
+    "Modified (format): / 06-07-2018 / 07:29:19 / Claus Gittinger"
 !
 
 openWorkspaceWithIt