1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 06:04:39 -04:00

Fixed some warnings from Mac ports compilation

This commit is contained in:
f4exb
2020-04-19 06:13:32 +02:00
parent 98925cce82
commit b64d813cfc
27 changed files with 84 additions and 50 deletions
+5 -5
View File
@@ -433,19 +433,19 @@ void DeviceAPI::getDeviceEngineStateStr(QString& state, int subsystemIndex)
{
switch(m_deviceMIMOEngine->state(subsystemIndex))
{
case DSPDeviceSinkEngine::StNotStarted:
case DSPDeviceMIMOEngine::StNotStarted:
state = "notStarted";
break;
case DSPDeviceSinkEngine::StIdle:
case DSPDeviceMIMOEngine::StIdle:
state = "idle";
break;
case DSPDeviceSinkEngine::StReady:
case DSPDeviceMIMOEngine::StReady:
state = "ready";
break;
case DSPDeviceSinkEngine::StRunning:
case DSPDeviceMIMOEngine::StRunning:
state = "running";
break;
case DSPDeviceSinkEngine::StError:
case DSPDeviceMIMOEngine::StError:
state = "error";
break;
default: