AbstractOperatingSystem.st
changeset 24108 7a3a01285e59
parent 24019 89ab38cd7df2
child 24131 e3c41bf36fa1
--- a/AbstractOperatingSystem.st	Mon May 06 18:52:00 2019 +0200
+++ b/AbstractOperatingSystem.st	Tue May 07 10:08:34 2019 +0200
@@ -2620,18 +2620,12 @@
 !
 
 commandNeedsShowWindowFlag:cmd
-    "this is a windows speciality (again).
+    "this is a windows speciality.
      Check against the set of commands which need the showWindow flag."
 
-    "kludge - notepad.exe on Windows does not open a window without showWindow set to true.
-     all others like notepad++, excel, libreoffice do"
-
-    "/ please refactor into Win32OperatingSystem...
-    "/ I have non at the moment
-    self isMSWINDOWSlike ifTrue:[
-        (cmd includesString:'notepad.exe') ifTrue:[^ true].
-    ].
     ^ false.
+
+    "Modified (comment): / 07-05-2019 / 08:21:47 / Stefan Vogel"
 !
 
 executableFileExtensions