mythnews has a function that hides a parameter.
From: Erik Hovland <erik@hovland.org>
---
mythplugins/mythnews/mythnews/mythnewsconfig.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/mythplugins/mythnews/mythnews/mythnewsconfig.cpp b/mythplugins/mythnews/mythnews/mythnewsconfig.cpp
index c556d67..8fb98d0 100644
|
a
|
b
|
void MythNewsConfig::slotCategoryChanged(MythListButtonItem *item)
|
| 262 | 262 | |
| 263 | 263 | for (NewsSiteItem* site = cat->siteList.first(); |
| 264 | 264 | site; site = cat->siteList.next() ) { |
| 265 | | MythListButtonItem* item = |
| | 265 | MythListButtonItem* newItem = |
| 266 | 266 | new MythListButtonItem(m_siteList, site->name, 0, true, |
| 267 | 267 | site->inDB ? |
| 268 | 268 | MythListButtonItem::FullChecked : |
| 269 | 269 | MythListButtonItem::NotChecked); |
| 270 | | item->setData(site); |
| | 270 | newItem->setData(site); |
| 271 | 271 | } |
| 272 | 272 | } |
| 273 | 273 | } |