We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e893df commit 9d303b7Copy full SHA for 9d303b7
1 file changed
src/qml/models/sendrecipient.cpp
@@ -11,7 +11,7 @@
11
#include <key_io.h>
12
13
SendRecipient::SendRecipient(WalletQmlModel* wallet, QObject* parent)
14
- : QObject(parent), m_wallet(wallet), m_address(new BitcoinAddress()), m_amount(new BitcoinAmount(this))
+ : QObject(parent), m_wallet(wallet), m_address(new BitcoinAddress(this)), m_amount(new BitcoinAmount(this))
15
{
16
connect(m_amount, &BitcoinAmount::amountChanged, this, &SendRecipient::validateAmount);
17
connect(m_address, &BitcoinAddress::formattedAddressChanged, this, &SendRecipient::validateAddress);
0 commit comments