Change some types (uint -> int) in RSS subsystem

This commit is contained in:
FranciscoPombal 2020-10-07 13:01:34 +01:00
parent deffdbe881
commit 2c10b3936b
5 changed files with 10 additions and 10 deletions

View file

@ -521,7 +521,7 @@ void RSSWidget::restoreSlidersPosition()
m_ui->splitterMain->restoreState(stateMain);
}
void RSSWidget::updateRefreshInterval(uint val)
void RSSWidget::updateRefreshInterval(int val) const
{
RSS::Session::instance()->setRefreshInterval(val);
}