From b7fd7d98374a7e2b932876936197a7a9b0d0fe74 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Thu, 30 Aug 2007 22:42:02 +0000 Subject: [PATCH] - Fixed memory leak in GUI --- TODO | 1 + src/GUI.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/TODO b/TODO index 4ea3a105e..6b9bf394a 100644 --- a/TODO +++ b/TODO @@ -95,3 +95,4 @@ beta5->beta6 changelog: - BUGFIX: Display the torrent that are being checked as 'checking' in seeding list - BUGFIX: Fixed file preview and improved previewable files detection - BUGFIX: Do not store and calculate ETA values for finished/paused torrents +- BUGFIX: Fixed memory leak in GUI diff --git a/src/GUI.cpp b/src/GUI.cpp index 948db9401..5fa5882e1 100644 --- a/src/GUI.cpp +++ b/src/GUI.cpp @@ -171,6 +171,7 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent), for // Destructor GUI::~GUI() { qDebug("GUI destruction"); + delete rssWidget; delete searchEngine; delete refresher; delete downloadingTorrentTab;