Fix memory leak in PodcastInfoWidget. (#6202)

This commit is contained in:
Jim Broadus 2018-11-13 00:09:15 -08:00 committed by John Maguire
parent a97401cac4
commit d8bab5a49f
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ PodcastInfoWidget::PodcastInfoWidget(QWidget* parent)
}
}
PodcastInfoWidget::~PodcastInfoWidget() {}
PodcastInfoWidget::~PodcastInfoWidget() { delete ui_; }
void PodcastInfoWidget::SetApplication(Application* app) {
app_ = app;