diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2020-08-07 18:19:03 +0900 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-08-14 13:45:25 +0900 |
commit | 711b875bcdbcd198cafbcf0bd87562f9c3725278 (patch) | |
tree | ebc025044376db64d982f1e794a413e9d0ea881e /scripts/kconfig/qconf.h | |
parent | 3c73ff040ed54b7bda754f4b016d7de31cb85207 (diff) |
kconfig: qconf: remove ConfigItem::pixmap/setPixmap
Use QTreeWidgetItem::icon/setIcon 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 952bd98d7912..5cda89a51740 100644 --- a/scripts/kconfig/qconf.h +++ b/scripts/kconfig/qconf.h @@ -172,14 +172,6 @@ public: { return Parent::text(idx); } - void setPixmap(colIdx idx, const QIcon &icon) - { - Parent::setIcon(idx, icon); - } - const QIcon pixmap(colIdx idx) const - { - return icon(idx); - } // TODO: Implement paintCell ConfigItem* nextItem; |