Browse Source

mingw compiler

import_zecw
Aditya Kulkarni 6 years ago
parent
commit
251c5aae9d
  1. 2
      src/connection.cpp
  2. 2
      src/mainwindow.cpp

2
src/connection.cpp

@ -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();

2
src/mainwindow.cpp

@ -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();
});

Loading…
Cancel
Save