Move RSS settings to a separate dialog

This commit is contained in:
Christophe Dumez 2010-06-22 13:39:49 +00:00
parent f8134b1a62
commit 54131001b0
14 changed files with 326 additions and 219 deletions

View file

@ -43,6 +43,7 @@
#include "bittorrent.h"
#include "cookiesdlg.h"
#include "preferences.h"
#include "rsssettings.h"
enum NewsCols { NEWS_ICON, NEWS_TITLE_COL, NEWS_URL_COL, NEWS_ID };
@ -640,3 +641,9 @@ RSSImp::~RSSImp(){
qDebug("RSSImp deleted");
}
void RSSImp::on_settingsButton_clicked() {
RssSettings rssSettingsDlg(this);
if(rssSettingsDlg.exec())
updateRefreshInterval(Preferences::getRefreshInterval());
}