1
mirror of https://github.com/monero-project/monero-gui synced 2024-10-31 21:56:42 +01:00

Merge pull request #3053

1d2840f ipc: fix Qt deprecation warning with 5.15.1 beta (selsta)
This commit is contained in:
luigi1111 2020-09-07 14:51:14 -05:00
commit 7e83173c77
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

View File

@ -76,7 +76,7 @@ bool IPC::saveCommand(QString cmdString){
QLocalSocket ls;
QByteArray buffer;
buffer = buffer.append(cmdString);
buffer = buffer.append(cmdString.toUtf8());
QString socketFilePath = this->socketFile().filePath();
ls.connectToServer(socketFilePath, QIODevice::WriteOnly);