- Fixed possible multiple rss tabs bug

This commit is contained in:
Christophe Dumez 2008-08-20 12:15:50 +00:00
parent c781545609
commit 42a2acefd3

View file

@ -286,9 +286,11 @@ GUI::~GUI() {
void GUI::displayRSSTab(bool enable) {
if(enable) {
// RSS tab
rssWidget = new RSSImp();
tabs->addTab(rssWidget, tr("RSS"));
tabs->setTabIcon(3, QIcon(QString::fromUtf8(":/Icons/rss32.png")));
if(rssWidget == 0) {
rssWidget = new RSSImp();
tabs->addTab(rssWidget, tr("RSS"));
tabs->setTabIcon(3, QIcon(QString::fromUtf8(":/Icons/rss32.png")));
}
} else {
if(rssWidget != 0) {
delete rssWidget;