- Timestamp:
- Mar 31, 2007, 8:35:15 PM (18 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncrinex.cpp
r422 r434 510 510 _out.close(); 511 511 if (!_rnxScriptName.isEmpty()) { 512 QProcess* cmd = new QProcess(); 513 cmd->start(_rnxScriptName, QStringList() << _fName << "&"); 514 cmd->waitForFinished(-1); 515 delete cmd; 516 /// system( QString(_rnxScriptName + " " + _fName + " &").toAscii().data() ); 517 } 518 } 512 QProcess::startDetached(_rnxScriptName, QStringList() << _fName); 513 } 514 } -
trunk/BNC/bncrinex.h
r421 r434 27 27 #define BNCRINEX_H 28 28 29 #include <QProcess>30 29 #include <QByteArray> 31 30 #include <QDateTime>
Note:
See TracChangeset
for help on using the changeset viewer.