forked from Public/monero-gui
ipc: fix Qt deprecation warning with 5.15.1 beta
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user