/[svn]/qsampler/trunk/src/qsamplerMainForm.cpp
ViewVC logotype

Diff of /qsampler/trunk/src/qsamplerMainForm.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1466 by capela, Thu Nov 1 19:25:10 2007 UTC revision 1473 by capela, Mon Nov 5 19:07:26 2007 UTC
# Line 2077  void MainForm::appendMessagesError( cons Line 2077  void MainForm::appendMessagesError( cons
2077      if (m_pMessages)      if (m_pMessages)
2078          m_pMessages->show();          m_pMessages->show();
2079    
2080      appendMessagesColor(s.simplifyWhiteSpace(), "#ff0000");      appendMessagesColor(s.simplified(), "#ff0000");
2081    
2082          // Make it look responsive...:)          // Make it look responsive...:)
2083          QApplication::processEvents(QEventLoop::ExcludeUserInput);          QApplication::processEvents(QEventLoop::ExcludeUserInput);
# Line 2385  void MainForm::startServer (void) Line 2385  void MainForm::startServer (void)
2385                  //m_pServer->setProcessChannelMode(                  //m_pServer->setProcessChannelMode(
2386                  //      QProcess::StandardOutput);                  //      QProcess::StandardOutput);
2387                  QObject::connect(m_pServer,                  QObject::connect(m_pServer,
2388                          SIGNAL(readyReadStdout()),                          SIGNAL(readyReadStandardOutput()),
2389                          SLOT(readServerStdout()));                          SLOT(readServerStdout()));
2390                  QObject::connect(m_pServer,                  QObject::connect(m_pServer,
2391                          SIGNAL(readyReadStderr()),                          SIGNAL(readyReadStandardError()),
2392                          SLOT(readServerStdout()));                          SLOT(readServerStdout()));
2393          //      }          //      }
2394          // The unforgiveable signal communication...          // The unforgiveable signal communication...
2395          QObject::connect(m_pServer,          QObject::connect(m_pServer,
2396                  SIGNAL(processExited()),                  SIGNAL(finished(int,QProcess::ExitStatus)),
2397                  SLOT(processServerExit()));                  SLOT(processServerExit()));
2398    
2399      // Build process arguments...      // Build process arguments...

Legend:
Removed from v.1466  
changed lines
  Added in v.1473

  ViewVC Help
Powered by ViewVC