From: tobtoht Date: Mon, 9 Jan 2023 22:37:34 +0000 (+0100) Subject: Fix typos X-Git-Url: https://git.nutra.tk/v2?a=commitdiff_plain;h=52612be6d7c02a895f8aa94a0a40ac119afe4f0d;p=gamesguru%2Ffeather.git Fix typos --- diff --git a/src/dialog/DebugInfoDialog.cpp b/src/dialog/DebugInfoDialog.cpp index 40b9cf21..915b545e 100644 --- a/src/dialog/DebugInfoDialog.cpp +++ b/src/dialog/DebugInfoDialog.cpp @@ -17,7 +17,7 @@ DebugInfoDialog::DebugInfoDialog(QSharedPointer ctx, QWidget *parent { ui->setupUi(this); - connect(ui->btn_Copy, &QPushButton::clicked, this, &DebugInfoDialog::copyToClipboad); + connect(ui->btn_Copy, &QPushButton::clicked, this, &DebugInfoDialog::copyToClipboard); m_updateTimer.start(5000); connect(&m_updateTimer, &QTimer::timeout, this, &DebugInfoDialog::updateInfo); diff --git a/src/libwalletqt/PassphraseHelper.h b/src/libwalletqt/PassphraseHelper.h index 8cd474f0..3b248ff4 100644 --- a/src/libwalletqt/PassphraseHelper.h +++ b/src/libwalletqt/PassphraseHelper.h @@ -15,7 +15,7 @@ * Implements component responsible for showing entry prompt to the user, * typically Wallet / Wallet manager. */ -class PassprasePrompter { +class PassphrasePrompter { public: virtual void onWalletPassphraseNeeded(bool onDevice) = 0; };