kconfig: qconf: remove ConfigItem::text/setText
authorMasahiro Yamada <masahiroy@kernel.org>
Fri, 7 Aug 2020 09:19:05 +0000 (18:19 +0900)
committerMasahiro Yamada <masahiroy@kernel.org>
Fri, 14 Aug 2020 04:45:51 +0000 (13:45 +0900)
Use QTreeWidgetItem::text/setText directly

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
scripts/kconfig/qconf.h

index daa180b..012414d 100644 (file)
@@ -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;