Browse Source

- Fixed memory leak in GUI

adaptive-webui-19844
Christophe Dumez 17 years ago
parent
commit
b7fd7d9837
  1. 1
      TODO
  2. 1
      src/GUI.cpp

1
TODO

@ -95,3 +95,4 @@ beta5->beta6 changelog: @@ -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

1
src/GUI.cpp

@ -171,6 +171,7 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent), for @@ -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;

Loading…
Cancel
Save