mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-27 11:49:01 +03:00
- Little pointer code cleanup
This commit is contained in:
parent
59f21d592e
commit
6dbd1daa5c
2 changed files with 4 additions and 8 deletions
10
src/GUI.cpp
10
src/GUI.cpp
|
@ -169,9 +169,6 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent), dis
|
|||
searchEngine = new SearchEngine(BTSession, myTrayIcon, systrayIntegration);
|
||||
tabs->addTab(searchEngine, QIcon(QString::fromUtf8(":/Icons/oxygen/edit-find.png")), tr("Search"));
|
||||
|
||||
// RSS Tab
|
||||
rssWidget = 0;
|
||||
|
||||
// Configure BT session according to options
|
||||
loadPreferences(false);
|
||||
// Resume unfinished torrents
|
||||
|
@ -275,7 +272,7 @@ GUI::~GUI() {
|
|||
delete statusSep2;
|
||||
delete statusSep3;
|
||||
delete statusSep4;
|
||||
if(rssWidget != 0)
|
||||
if(rssWidget)
|
||||
delete rssWidget;
|
||||
delete searchEngine;
|
||||
delete transferListFilters;
|
||||
|
@ -315,15 +312,14 @@ GUI::~GUI() {
|
|||
void GUI::displayRSSTab(bool enable) {
|
||||
if(enable) {
|
||||
// RSS tab
|
||||
if(rssWidget == 0) {
|
||||
if(!rssWidget) {
|
||||
rssWidget = new RSSImp(BTSession);
|
||||
int index_tab = tabs->addTab(rssWidget, tr("RSS"));
|
||||
tabs->setTabIcon(index_tab, QIcon(QString::fromUtf8(":/Icons/rss32.png")));
|
||||
}
|
||||
} else {
|
||||
if(rssWidget != 0) {
|
||||
if(rssWidget) {
|
||||
delete rssWidget;
|
||||
rssWidget = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -104,7 +104,7 @@ class GUI : public QMainWindow, private Ui::MainWindow{
|
|||
// Search
|
||||
SearchEngine *searchEngine;
|
||||
// RSS
|
||||
RSSImp *rssWidget;
|
||||
QPointer<RSSImp> rssWidget;
|
||||
// Web UI
|
||||
QPointer<HttpServer> httpServer;
|
||||
// Misc
|
||||
|
|
Loading…
Reference in a new issue