diff options
author | Marco Ammon <marco.ammon@fau.de> | 2019-07-04 12:50:41 +0200 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-07-06 21:58:23 +0900 |
commit | baa23ec860920ebf3e897c4bbb3420a88ea80ec1 (patch) | |
tree | 17f70a212cda563dae810352e48d95fdd94aa623 /scripts/kconfig/qconf.cc | |
parent | a94a48b1614118ea6898cf5d4340675f7f6cc976 (diff) | |
download | linux-baa23ec860920ebf3e897c4bbb3420a88ea80ec1.tar.bz2 |
kconfig: Fix spelling of sym_is_changable
There is a spelling mistake in "changable", it is corrected to
"changeable" and all call sites are updated accordingly.
Signed-off-by: Marco Ammon <marco.ammon@fau.de>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts/kconfig/qconf.cc')
-rw-r--r-- | scripts/kconfig/qconf.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc index ce7fc87a49a7..82773cc35d35 100644 --- a/scripts/kconfig/qconf.cc +++ b/scripts/kconfig/qconf.cc @@ -152,7 +152,7 @@ void ConfigItem::updateMenu(void) case S_TRISTATE: char ch; - if (!sym_is_changable(sym) && list->optMode == normalOpt) { + if (!sym_is_changeable(sym) && list->optMode == normalOpt) { setPixmap(promptColIdx, QIcon()); setText(noColIdx, QString::null); setText(modColIdx, QString::null); |