1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-08-01 16:38:06 -04:00

Merge pull request #1418 from srcejon/remote_control

#1417 - Fix MacOS compilation
This commit is contained in:
Edouard Griffiths
2022-09-17 22:48:05 +02:00
committed by GitHub
+1 -1
View File
@@ -263,7 +263,7 @@ void VISADevice::setState(const QString &controlId, const QString &state)
VISAControl *control = reinterpret_cast<VISAControl *>(c);
if (control->m_id == controlId)
{
QString commands = QString::asprintf(control->m_setState.toUtf8(), state);
QString commands = QString::asprintf(control->m_setState.toUtf8(), state.toUtf8().data());
bool error;
m_visa.processCommands(m_session, commands, &error);
if (error) {