comparison mainwindow.cpp @ 76:d575a8f76a53

* Win32 build fixes
author Chris Cannam
date Sat, 20 Nov 2010 10:11:00 +0000
parents 10eb97683aa9
children aaeabc920ca8
comparison
equal deleted inserted replaced
75:295e3ee4a257 76:d575a8f76a53
1019 //Successful running. 1019 //Successful running.
1020 switch(runningAction) 1020 switch(runningAction)
1021 { 1021 {
1022 case ACT_PATHS: 1022 case ACT_PATHS:
1023 { 1023 {
1024 QString stdout = runner->getStdOut(); 1024 QString sout = runner->getStdOut();
1025 DEBUG << "stdout is " << stdout << endl; 1025 DEBUG << "stdout is " << sout << endl;
1026 LogParser lp(stdout, "="); 1026 LogParser lp(sout, "=");
1027 LogList ll = lp.parse(); 1027 LogList ll = lp.parse();
1028 DEBUG << ll.size() << " results" << endl; 1028 DEBUG << ll.size() << " results" << endl;
1029 if (!ll.empty()) { 1029 if (!ll.empty()) {
1030 remoteRepoPath = lp.parse()[0]["default"].trimmed(); 1030 remoteRepoPath = lp.parse()[0]["default"].trimmed();
1031 DEBUG << "Set remote path to " << remoteRepoPath << endl; 1031 DEBUG << "Set remote path to " << remoteRepoPath << endl;