Fix typos (#90)
This commit is contained in:
committed by
adityapk00
parent
9e8dc1e99f
commit
95498259bd
@@ -45,7 +45,7 @@ MainWindow::MainWindow(QWidget *parent) :
|
||||
rpc->checkForUpdate(false);
|
||||
});
|
||||
|
||||
// Pay zcash URI
|
||||
// Pay Zcash URI
|
||||
QObject::connect(ui->actionPay_URI, &QAction::triggered, this, &MainWindow::payZcashURI);
|
||||
|
||||
// Import Private Key
|
||||
@@ -854,7 +854,7 @@ void MainWindow::backupWalletDat() {
|
||||
|
||||
if (Settings::getInstance()->isTestnet()) {
|
||||
zcashdir.cd("testnet3");
|
||||
backupDefaultName = "tesetnet-" + backupDefaultName;
|
||||
backupDefaultName = "testnet-" + backupDefaultName;
|
||||
}
|
||||
|
||||
QFile wallet(zcashdir.filePath("wallet.dat"));
|
||||
@@ -1107,7 +1107,7 @@ void MainWindow::setupTransactionsTab() {
|
||||
});
|
||||
}
|
||||
|
||||
// If memo contains a reply to addess, add a "Reply to" menu item
|
||||
// If memo contains a reply to address, add a "Reply to" menu item
|
||||
if (!memo.isEmpty()) {
|
||||
int lastPost = memo.trimmed().lastIndexOf(QRegExp("[\r\n]+"));
|
||||
QString lastWord = memo.right(memo.length() - lastPost - 1);
|
||||
@@ -1309,7 +1309,7 @@ void MainWindow::setupRecieveTab() {
|
||||
|
||||
});
|
||||
|
||||
// Recieve tab add/update label
|
||||
// Receive tab add/update label
|
||||
QObject::connect(ui->rcvUpdateLabel, &QPushButton::clicked, [=]() {
|
||||
QString addr = ui->listRecieveAddresses->currentText();
|
||||
if (addr.isEmpty())
|
||||
|
||||
@@ -88,7 +88,7 @@
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
stateStr = "UNKNOW";
|
||||
stateStr = "UNKNOWN";
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -99,4 +99,4 @@
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user