mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 00:07:51 +00:00
src: fix compiler warnings
This commit is contained in:
parent
4370733b2b
commit
e04d563eb4
2 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
|
@ -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(){
|
||||||
|
|
Loading…
Reference in a new issue