mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-22 04:11:16 -05:00
Merge branch 'develop' into feat-boost-log
This commit is contained in:
commit
c5f4c1557b
@ -25,14 +25,16 @@ bool SoundInput::checkStream ()
|
||||
Q_EMIT error (tr ("An error occurred during read from the audio input device."));
|
||||
break;
|
||||
|
||||
case QAudio::UnderrunError:
|
||||
Q_EMIT error (tr ("Audio data not being fed to the audio input device fast enough."));
|
||||
break;
|
||||
// case QAudio::UnderrunError:
|
||||
// Q_EMIT error (tr ("Audio data not being fed to the audio input device fast enough."));
|
||||
// break;
|
||||
|
||||
case QAudio::FatalError:
|
||||
Q_EMIT error (tr ("Non-recoverable error, audio input device not usable at this time."));
|
||||
break;
|
||||
|
||||
case QAudio::UnderrunError: // TODO G4WJS: stop ignoring this
|
||||
// when we find the cause on macOS
|
||||
case QAudio::NoError:
|
||||
result = true;
|
||||
break;
|
||||
|
2
main.cpp
2
main.cpp
@ -102,7 +102,7 @@ int main(int argc, char *argv[])
|
||||
// Multiple instances communicate with jt9 via this
|
||||
QSharedMemory mem_jt9;
|
||||
|
||||
ExceptionCatchingApplication a(argc, argv);
|
||||
QApplication a(argc, argv);
|
||||
try
|
||||
{
|
||||
// LOG_INfO ("+++++++++++++++++++++++++++ Resources ++++++++++++++++++++++++++++");
|
||||
|
Loading…
Reference in New Issue
Block a user