mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-05-31 08:13:52 +02:00
Do not shadow in src/qt
This commit is contained in:
committed by
Wladimir J. van der Laan
parent
26b370a937
commit
f839350420
@@ -109,20 +109,20 @@ ReceiveRequestDialog::~ReceiveRequestDialog()
|
||||
delete ui;
|
||||
}
|
||||
|
||||
void ReceiveRequestDialog::setModel(OptionsModel *model)
|
||||
void ReceiveRequestDialog::setModel(OptionsModel *_model)
|
||||
{
|
||||
this->model = model;
|
||||
this->model = _model;
|
||||
|
||||
if (model)
|
||||
connect(model, SIGNAL(displayUnitChanged(int)), this, SLOT(update()));
|
||||
if (_model)
|
||||
connect(_model, SIGNAL(displayUnitChanged(int)), this, SLOT(update()));
|
||||
|
||||
// update the display unit if necessary
|
||||
update();
|
||||
}
|
||||
|
||||
void ReceiveRequestDialog::setInfo(const SendCoinsRecipient &info)
|
||||
void ReceiveRequestDialog::setInfo(const SendCoinsRecipient &_info)
|
||||
{
|
||||
this->info = info;
|
||||
this->info = _info;
|
||||
update();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user