/[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 3831 by capela, Tue Sep 1 10:55:24 2020 UTC revision 3832 by capela, Mon Oct 19 17:08:56 2020 UTC
# Line 2918  void MainForm::startServer (void) Line 2918  void MainForm::startServer (void)
2918    
2919          // Show startup results...          // Show startup results...
2920          appendMessages(          appendMessages(
2921                  tr("Server was started with PID=%1.").arg((long) m_pServer->pid()));                  tr("Server was started with PID=%1.")
2922                    #if QT_VERSION < QT_VERSION_CHECK(5, 3, 0)
2923                            .arg(quint64(m_pServer->pid())));
2924                    #else
2925                            .arg(quint64(m_pServer->processId())));
2926                    #endif
2927    
2928          // Reset (yet again) the timer counters,          // Reset (yet again) the timer counters,
2929          // but this time is deferred as the user opted.          // but this time is deferred as the user opted.

Legend:
Removed from v.3831  
changed lines
  Added in v.3832

  ViewVC Help
Powered by ViewVC