GDBProcess.st
changeset 163 f882d9048b54
parent 153 dd55019f1d86
child 164 a16705f64a64
--- a/GDBProcess.st	Wed Nov 28 14:07:54 2018 +0000
+++ b/GDBProcess.st	Wed Dec 12 16:32:44 2018 +0000
@@ -78,17 +78,16 @@
                 ^ GDBStXUnixProcess basicNew initialize
             ].
             OperatingSystem isMSWINDOWSlike ifTrue:[
-                ^ GDBStXWindowsProcess basicNew initialize
+                ^ GDBStXSimpleProcess basicNew initialize
             ]
         ].
         GDBError signal:'Unsuported platform'.
-    ] ifFalse:[ 
+    ] ifFalse:[
         ^ super new.
     ].
 
     "
      GDBProcess new release."
-
     "Modified (comment): / 11-01-2018 / 23:02:11 / jv"
     "Modified: / 21-10-2018 / 08:06:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !