#REFACTORING by stefan
authorStefan Vogel <sv@exept.de>
Tue, 07 May 2019 10:08:34 +0200
changeset 24108 7a3a01285e59
parent 24107 5a6df1f710ff
child 24109 35c666f2971b
#REFACTORING by stefan class: AbstractOperatingSystem class added: #commandNeedsShowWindowFlag:
AbstractOperatingSystem.st
--- 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