mingw compiler

This commit is contained in:
Aditya Kulkarni
2018-11-01 23:42:23 -07:00
parent 2a089d9692
commit 251c5aae9d
2 changed files with 2 additions and 2 deletions

View File

@@ -90,7 +90,7 @@ void ConnectionLoader::refreshZcashdState(Connection* connection) {
[=] (auto) {
// Success, hide the dialog if it was shown.
d->hide();
doRPCSetConnection(connection);
this->doRPCSetConnection(connection);
},
[=] (auto reply, auto res) {
d->show();

View File

@@ -493,7 +493,7 @@ void MainWindow::exportAllKeys() {
if (!file.open(QIODevice::WriteOnly)) {
QMessageBox::information(this, tr("Unable to open file"), file.errorString());
return;
}
}
QTextStream out(&file);
out << pui.privKeyTxt->toPlainText();
});