Merge pull request #1418 from srcejon/remote_control

#1417 - Fix MacOS compilation
pull/1420/head
Edouard Griffiths 2022-09-17 22:48:05 +02:00 zatwierdzone przez GitHub
commit dca9fe324d
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
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) {