Browse Source

* Fix bug #32055

git-svn-id: trunk@36678 -
michael 8 years ago
parent
commit
606d6d7316
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/fcl-process/src/win/process.inc

+ 1 - 1
packages/fcl-process/src/win/process.inc

@@ -68,7 +68,7 @@ begin
     begin
     begin
     Result:=CREATE_UNICODE_ENVIRONMENT;
     Result:=CREATE_UNICODE_ENVIRONMENT;
     if poNoConsole in Options then
     if poNoConsole in Options then
-      Result:=Result or Detached_Process;
+      Result:=Result or CREATE_NO_WINDOW;
     if poNewConsole in Options then
     if poNewConsole in Options then
       Result:=Result or Create_new_console;
       Result:=Result or Create_new_console;
     if poNewProcessGroup in Options then
     if poNewProcessGroup in Options then