diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2020-08-07 12:19:05 +0300 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-08-14 07:45:51 +0300 |
commit | 5ca534cdf97a6ef760b94a658cafc1e40c6e3e29 (patch) | |
tree | c96d3da5f4d8562d68200a57a232789dc5f63df7 /scripts | |
parent | abf741a9fa4f9cee63f6c7bebc36bee44c6a8801 (diff) | |
download | linux-5ca534cdf97a6ef760b94a658cafc1e40c6e3e29.tar.xz |
kconfig: qconf: remove ConfigItem::text/setText
Use QTreeWidgetItem::text/setText directly
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts')
-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 daa180bdb9b4..012414dcdee5 100644 --- a/scripts/kconfig/qconf.h +++ b/scripts/kconfig/qconf.h @@ -156,14 +156,6 @@ public: return ret; } - void setText(colIdx idx, const QString& text) - { - Parent::setText(idx, text); - } - QString text(colIdx idx) const - { - return Parent::text(idx); - } // TODO: Implement paintCell ConfigItem* nextItem; |