1
mirror of https://github.com/monero-project/monero-gui synced 2024-12-22 03:15:52 +01:00

Merge pull request #2283

e04d563 src: fix compiler warnings (selsta)
This commit is contained in:
luigi1111 2019-07-16 11:36:26 -05:00
commit c426f1eb83
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010
2 changed files with 3 additions and 3 deletions

View File

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

View File

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