Comment checkSubtractFeeFromAmount()

This commit is contained in:
lateminer
2018-09-30 19:06:20 +03:00
parent c3e51a90cb
commit e4d21f3de7
3 changed files with 4 additions and 2 deletions

View File

@@ -585,7 +585,7 @@ void SendCoinsDialog::useAvailableBalance(SendCoinsEntry* entry)
}
if (amount > 0) {
entry->checkSubtractFeeFromAmount();
// entry->checkSubtractFeeFromAmount();
entry->setAmount(amount);
} else {
entry->setAmount(0);

View File

@@ -119,10 +119,12 @@ void SendCoinsEntry::clear()
updateDisplayUnit();
}
/*
void SendCoinsEntry::checkSubtractFeeFromAmount()
{
ui->checkboxSubtractFeeFromAmount->setChecked(true);
}
*/
void SendCoinsEntry::deleteClicked()
{

View File

@@ -49,7 +49,7 @@ public:
public Q_SLOTS:
void clear();
void checkSubtractFeeFromAmount();
// void checkSubtractFeeFromAmount();
Q_SIGNALS:
void removeEntry(SendCoinsEntry *entry);