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:
commit
7e83173c77
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user