--- qsampler/trunk/src/qsamplerMainForm.cpp 2020/10/15 18:08:49 3831 +++ qsampler/trunk/src/qsamplerMainForm.cpp 2020/10/19 17:08:56 3832 @@ -2918,7 +2918,12 @@ // Show startup results... appendMessages( - tr("Server was started with PID=%1.").arg((long) m_pServer->pid())); + tr("Server was started with PID=%1.") + #if QT_VERSION < QT_VERSION_CHECK(5, 3, 0) + .arg(quint64(m_pServer->pid()))); + #else + .arg(quint64(m_pServer->processId()))); + #endif // Reset (yet again) the timer counters, // but this time is deferred as the user opted.