src: fix compiler warnings

pull/2/head
selsta 5 years ago
parent 4370733b2b
commit e04d563eb4
Signed by untrusted user: selsta
GPG Key ID: 2EA0A99A8B07AE5E

@ -66,7 +66,7 @@ public:
}
auto tmpPass = m_mgr->m_passphrase.toStdString();
m_mgr->m_passphrase = QString::null;
m_mgr->m_passphrase = QString();
return Monero::optional<std::string>(tmpPass);
}

@ -99,8 +99,8 @@ bool IPC::saveCommand(QString cmdString){
return true;
}
bool IPC::saveCommand(const QUrl &url){;
this->saveCommand(url.toString());
bool IPC::saveCommand(const QUrl &url){
return this->saveCommand(url.toString());
}
void IPC::handleConnection(){