aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasahiro Yamada <masahiroy@kernel.org>2020-08-07 18:19:05 +0900
committerMasahiro Yamada <masahiroy@kernel.org>2020-08-14 13:45:51 +0900
commit5ca534cdf97a6ef760b94a658cafc1e40c6e3e29 (patch)
treec96d3da5f4d8562d68200a57a232789dc5f63df7
parentabf741a9fa4f9cee63f6c7bebc36bee44c6a8801 (diff)
downloadlinux-5ca534cdf97a6ef760b94a658cafc1e40c6e3e29.tar.gz
kconfig: qconf: remove ConfigItem::text/setText
Use QTreeWidgetItem::text/setText directly Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
-rw-r--r--scripts/kconfig/qconf.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/scripts/kconfig/qconf.h b/scripts/kconfig/qconf.h
index daa180bdb9b483..012414dcdee5ba 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;