comparison hgrunner.cpp @ 58:8af90d057609

* Simplify tabs
author Chris Cannam
date Tue, 16 Nov 2010 14:32:51 +0000
parents f583e44d9d31
children 4557da8bdee6
comparison
equal deleted inserted replaced
57:f583e44d9d31 58:8af90d057609
62 { 62 {
63 exitCode = procExitCode; 63 exitCode = procExitCode;
64 exitStatus = procExitStatus; 64 exitStatus = procExitStatus;
65 stdOut = QString::fromUtf8(proc -> readAllStandardOutput()); 65 stdOut = QString::fromUtf8(proc -> readAllStandardOutput());
66 stdErr = QString::fromUtf8(proc -> readAllStandardError()); 66 stdErr = QString::fromUtf8(proc -> readAllStandardError());
67 std::cerr << "stdout was " << stdOut.toStdString() << std::endl; 67
68 DEBUG << "setProcExitInfo: received " << stdOut.split("\n").size() << " lines of stdout";
69 DEBUG << "setProcExitInfo: received " << stdErr.split("\n").size() << " lines of stderr";
70
71 // std::cerr << "stdout was " << stdOut.toStdString() << std::endl;
68 } 72 }
69 73
70 void HgRunner::presentErrorToUser() 74 void HgRunner::presentErrorToUser()
71 { 75 {
72 QPushButton *okButton; 76 QPushButton *okButton;