Commit 721bfe58 authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

kconfig: qconf: fix ConfigList::updateListAllforAll()



ConfigList::updateListForAll() and ConfigList::updateListAllforAll()
are identical.

Commit f9b918fa ("kconfig: qconf: move ConfigView::updateList(All)
to ConfigList class") was a misconversion.

Fixes: f9b918fa ("kconfig: qconf: move ConfigView::updateList(All) to ConfigList class")
Signed-off-by: default avatarMasahiro Yamada <masahiroy@kernel.org>
parent 263e70bc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -486,7 +486,7 @@ void ConfigList::updateListAllForAll()
	while (it.hasNext()) {
		ConfigList *list = it.next();

		list->updateList();
		list->updateListAll();
	}
}