#1417 - Fix compilation on Mac

pull/1418/head
Jon Beniston 2022-09-17 20:33:22 +01:00
rodzic 13ec843891
commit 3786dc1aae
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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) {