Fix typos

This commit is contained in:
tobtoht 2023-01-09 23:37:34 +01:00
parent 80e8a65c38
commit 52612be6d7
No known key found for this signature in database
GPG key ID: E45B10DD027D2472
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ DebugInfoDialog::DebugInfoDialog(QSharedPointer<AppContext> 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);

View file

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