Commit cb77043f authored by Masahiro Yamada's avatar Masahiro Yamada

kconfig: qconf: remove unused argument from ConfigList::updateList()

This function allocates 'item' before using it, so the argument 'item'
is always shadowed.

Remove the meaningless argument.
Signed-off-by: default avatarMasahiro Yamada <masahiroy@kernel.org>
parent 92641154
...@@ -404,15 +404,15 @@ void ConfigList::updateSelection(void) ...@@ -404,15 +404,15 @@ void ConfigList::updateSelection(void)
emit menuSelected(menu); emit menuSelected(menu);
} }
void ConfigList::updateList(ConfigItem* item) void ConfigList::updateList()
{ {
ConfigItem* last = 0; ConfigItem* last = 0;
ConfigItem *item;
if (!rootEntry) { if (!rootEntry) {
if (mode != listMode) if (mode != listMode)
goto update; goto update;
QTreeWidgetItemIterator it(this); QTreeWidgetItemIterator it(this);
ConfigItem* item;
while (*it) { while (*it) {
item = (ConfigItem*)(*it); item = (ConfigItem*)(*it);
...@@ -990,7 +990,7 @@ void ConfigView::updateList(ConfigItem* item) ...@@ -990,7 +990,7 @@ void ConfigView::updateList(ConfigItem* item)
ConfigView* v; ConfigView* v;
for (v = viewList; v; v = v->nextView) for (v = viewList; v; v = v->nextView)
v->list->updateList(item); v->list->updateList();
} }
void ConfigView::updateListAll(void) void ConfigView::updateListAll(void)
......
...@@ -69,7 +69,7 @@ class ConfigList : public QTreeWidget { ...@@ -69,7 +69,7 @@ class ConfigList : public QTreeWidget {
public slots: public slots:
void setRootMenu(struct menu *menu); void setRootMenu(struct menu *menu);
void updateList(ConfigItem *item); void updateList();
void setValue(ConfigItem* item, tristate val); void setValue(ConfigItem* item, tristate val);
void changeValue(ConfigItem* item); void changeValue(ConfigItem* item);
void updateSelection(void); void updateSelection(void);
...@@ -85,7 +85,7 @@ public slots: ...@@ -85,7 +85,7 @@ public slots:
void updateListAll(void) void updateListAll(void)
{ {
updateAll = true; updateAll = true;
updateList(NULL); updateList();
updateAll = false; updateAll = false;
} }
void addColumn(colIdx idx) void addColumn(colIdx idx)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment