diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2020-08-07 11:19:04 +0200 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-08-14 06:45:38 +0200 |
commit | abf741a9fa4f9cee63f6c7bebc36bee44c6a8801 (patch) | |
tree | 828d30367df0cbb7b06fb155a89467a4cd59f5cb /scripts/kconfig/qconf.h | |
parent | kconfig: qconf: remove ConfigItem::pixmap/setPixmap (diff) | |
download | linux-abf741a9fa4f9cee63f6c7bebc36bee44c6a8801.tar.xz linux-abf741a9fa4f9cee63f6c7bebc36bee44c6a8801.zip |
kconfig: qconf: remove ConfigList::addColumn/removeColumn
Use QTreeView::showColumn/hideColumn directly.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig/qconf.h')
-rw-r--r-- | scripts/kconfig/qconf.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/scripts/kconfig/qconf.h b/scripts/kconfig/qconf.h index 5cda89a51740..daa180bdb9b4 100644 --- a/scripts/kconfig/qconf.h +++ b/scripts/kconfig/qconf.h @@ -88,14 +88,6 @@ public: updateList(); updateAll = false; } - void addColumn(colIdx idx) - { - showColumn(idx); - } - void removeColumn(colIdx idx) - { - hideColumn(idx); - } void setAllOpen(bool open); void setParentMenu(void); |