Changeset 190
- Timestamp:
- Sep 22, 2009, 10:44:03 PM (16 years ago)
- Location:
- trunk/src/corelib/io
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/corelib/io/qprocess.cpp
r72 r190 437 437 serial = 0; 438 438 #endif 439 440 441 439 442 } 440 443 … … 443 446 QProcessPrivate::~QProcessPrivate() 444 447 { 448 449 450 445 451 if (stdinChannel.process) 446 452 stdinChannel.process->stdoutChannel.clear(); … … 744 750 processError = QProcess::FailedToStart; 745 751 emit q->error(processError); 746 #if def Q_OS_UNIX752 #if 747 753 // make sure the process manager removes this entry 748 754 waitForDeadChild(); … … 801 807 waitForFinished(); 802 808 } 803 #if def Q_OS_UNIX809 #if 804 810 // make sure the process manager removes this entry 805 811 d->findExitCode(); -
trunk/src/corelib/io/qprocess_os2.cpp