Merge pull request #3355

6c98cca qt: use deleteLater to remove send entries (Wladimir J. van der Laan)
This commit is contained in:
Wladimir J. van der Laan 2013-12-04 09:42:00 +01:00
commit 00cfc9f074
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
1 changed files with 2 additions and 2 deletions

View File

@ -260,7 +260,7 @@ void SendCoinsDialog::clear()
// Remove entries until only one left
while(ui->entries->count())
{
delete ui->entries->takeAt(0)->widget();
ui->entries->takeAt(0)->widget()->deleteLater();
}
addEntry();
@ -306,7 +306,7 @@ void SendCoinsDialog::updateTabsAndLabels()
void SendCoinsDialog::removeEntry(SendCoinsEntry* entry)
{
delete entry;
entry->deleteLater();
// If the last entry was removed add an empty one
if (!ui->entries->count())