Skip to content

Commit 4fa91f5

Browse files
committed
kconfig: qconf: remove unused voidPix, menuInvPix
These are initialized, but not used by anyone. Signed-off-by: Masahiro Yamada <[email protected]>
1 parent 5ca534c commit 4fa91f5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/kconfig/qconf.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ ConfigList::ConfigList(ConfigView* p, const char *name)
291291
updateAll(false),
292292
symbolYesPix(xpm_symbol_yes), symbolModPix(xpm_symbol_mod), symbolNoPix(xpm_symbol_no),
293293
choiceYesPix(xpm_choice_yes), choiceNoPix(xpm_choice_no),
294-
menuPix(xpm_menu), menuInvPix(xpm_menu_inv), menuBackPix(xpm_menuback), voidPix(xpm_void),
294+
menuPix(xpm_menu), menuBackPix(xpm_menuback),
295295
showName(false), showRange(false), showData(false), mode(singleMode), optMode(normalOpt),
296296
rootEntry(0), headerPopup(0)
297297
{

scripts/kconfig/qconf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public slots:
100100

101101
QPixmap symbolYesPix, symbolModPix, symbolNoPix;
102102
QPixmap choiceYesPix, choiceNoPix;
103-
QPixmap menuPix, menuInvPix, menuBackPix, voidPix;
103+
QPixmap menuPix, menuBackPix;
104104

105105
bool showName, showRange, showData;
106106
enum listMode mode;

0 commit comments

Comments
 (0)