Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

kconfig: qconf: Fix a few alignment issues

There are a few items with wrong alignments. Solve them.

Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>

authored by

Mauro Carvalho Chehab and committed by
Masahiro Yamada
60969f02 e1f7769f

+7 -6
+7 -6
scripts/kconfig/qconf.cc
··· 633 633 last = item; 634 634 continue; 635 635 } 636 - hide: 636 + hide: 637 637 if (item && item->menu == child) { 638 638 last = parent->firstChild(); 639 639 if (last == item) ··· 698 698 last = item; 699 699 continue; 700 700 } 701 - hide: 701 + hide: 702 702 if (item && item->menu == child) { 703 703 last = (ConfigItem*)parent->topLevelItem(0); 704 704 if (last == item) ··· 1237 1237 { 1238 1238 QMenu* popup = Parent::createStandardContextMenu(pos); 1239 1239 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()); 1244 1245 popup->addSeparator(); 1245 1246 popup->addAction(action); 1246 1247 return popup;