mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 04:52:59 +01:00
Merge #12779: Qt: Remove unused method setupAmountWidget(...)
3a0f8d7
Qt: Remove unused method setupAmountWidget(...) (practicalswift) Pull request description: Remove unused method `setupAmountWidget(...)`. Last use removed inf193c57a63
. Tree-SHA512: 8f25ed2da13cfbc0f2e042286b3c979ef03de960028d7824110bdc2ed96f5075e3b35a9809a09c83caa5bad2237d2e048ff212b19a0be1d07f79c19691dfcd87
This commit is contained in:
commit
f4353daa61
@ -137,15 +137,6 @@ void setupAddressWidget(QValidatedLineEdit *widget, QWidget *parent)
|
|||||||
widget->setCheckValidator(new BitcoinAddressCheckValidator(parent));
|
widget->setCheckValidator(new BitcoinAddressCheckValidator(parent));
|
||||||
}
|
}
|
||||||
|
|
||||||
void setupAmountWidget(QLineEdit *widget, QWidget *parent)
|
|
||||||
{
|
|
||||||
QDoubleValidator *amountValidator = new QDoubleValidator(parent);
|
|
||||||
amountValidator->setDecimals(8);
|
|
||||||
amountValidator->setBottom(0.0);
|
|
||||||
widget->setValidator(amountValidator);
|
|
||||||
widget->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool parseBitcoinURI(const QUrl &uri, SendCoinsRecipient *out)
|
bool parseBitcoinURI(const QUrl &uri, SendCoinsRecipient *out)
|
||||||
{
|
{
|
||||||
// return if URI is not valid or is no bitcoin: URI
|
// return if URI is not valid or is no bitcoin: URI
|
||||||
|
@ -40,9 +40,8 @@ namespace GUIUtil
|
|||||||
// Return a monospace font
|
// Return a monospace font
|
||||||
QFont fixedPitchFont();
|
QFont fixedPitchFont();
|
||||||
|
|
||||||
// Set up widgets for address and amounts
|
// Set up widget for address
|
||||||
void setupAddressWidget(QValidatedLineEdit *widget, QWidget *parent);
|
void setupAddressWidget(QValidatedLineEdit *widget, QWidget *parent);
|
||||||
void setupAmountWidget(QLineEdit *widget, QWidget *parent);
|
|
||||||
|
|
||||||
// Parse "bitcoin:" URI into recipient object, return true on successful parsing
|
// Parse "bitcoin:" URI into recipient object, return true on successful parsing
|
||||||
bool parseBitcoinURI(const QUrl &uri, SendCoinsRecipient *out);
|
bool parseBitcoinURI(const QUrl &uri, SendCoinsRecipient *out);
|
||||||
|
Loading…
Reference in New Issue
Block a user