Skip to content

Commit 60969f0

Browse files
mchehabmasahir0y
authored andcommitted
kconfig: qconf: Fix a few alignment issues
There are a few items with wrong alignments. Solve them. Signed-off-by: Mauro Carvalho Chehab <[email protected]> Signed-off-by: Masahiro Yamada <[email protected]>
1 parent e1f7769 commit 60969f0

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

scripts/kconfig/qconf.cc

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ void ConfigList::updateMenuList(ConfigItem *parent, struct menu* menu)
633633
last = item;
634634
continue;
635635
}
636-
hide:
636+
hide:
637637
if (item && item->menu == child) {
638638
last = parent->firstChild();
639639
if (last == item)
@@ -698,7 +698,7 @@ void ConfigList::updateMenuList(ConfigList *parent, struct menu* menu)
698698
last = item;
699699
continue;
700700
}
701-
hide:
701+
hide:
702702
if (item && item->menu == child) {
703703
last = (ConfigItem*)parent->topLevelItem(0);
704704
if (last == item)
@@ -1237,10 +1237,11 @@ QMenu* ConfigInfoView::createStandardContextMenu(const QPoint & pos)
12371237
{
12381238
QMenu* popup = Parent::createStandardContextMenu(pos);
12391239
QAction* action = new QAction("Show Debug Info", popup);
1240-
action->setCheckable(true);
1241-
connect(action, SIGNAL(toggled(bool)), SLOT(setShowDebug(bool)));
1242-
connect(this, SIGNAL(showDebugChanged(bool)), action, SLOT(setOn(bool)));
1243-
action->setChecked(showDebug());
1240+
1241+
action->setCheckable(true);
1242+
connect(action, SIGNAL(toggled(bool)), SLOT(setShowDebug(bool)));
1243+
connect(this, SIGNAL(showDebugChanged(bool)), action, SLOT(setOn(bool)));
1244+
action->setChecked(showDebug());
12441245
popup->addSeparator();
12451246
popup->addAction(action);
12461247
return popup;

0 commit comments

Comments
 (0)