Skip to content
/ linux Public
forked from torvalds/linux

Commit

Permalink
Port xconfig to Qt5 - Fix goParent issue.
Browse files Browse the repository at this point in the history
Signed-off-by: Boris Barbulovski <[email protected]>
Signed-off-by: Thiago Macieira <[email protected]>
Signed-off-by: Michal Marek <[email protected]>
  • Loading branch information
bokic authored and Michal Marek committed Oct 14, 2015
1 parent 5df9da9 commit ee7298f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/kconfig/qconf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ void ConfigList::updateList(ConfigItem* item)

if (rootEntry != &rootmenu && (mode == singleMode ||
(mode == symbolMode && rootEntry->parent != &rootmenu))) {
item = firstChild();
item = (ConfigItem *)topLevelItem(0);
if (!item)
item = new ConfigItem(this, 0, true);
last = item;
Expand Down

0 comments on commit ee7298f

Please sign in to comment.