Port xconfig to Qt5 - Add ConfigItem::nextItem to initializer list.
[deliverable/linux.git] / scripts / kconfig / qconf.h
index 819e0292aaba30667efd8719f49b210cd1a3d2f7..d1383c6692d95da2b2a10758ffaaac92edd6d7e5 100644 (file)
@@ -124,17 +124,17 @@ class ConfigItem : public QTreeWidgetItem {
        typedef class QTreeWidgetItem Parent;
 public:
        ConfigItem(QTreeWidget *parent, ConfigItem *after, struct menu *m, bool v)
-       : Parent(parent, after), menu(m), visible(v), goParent(false)
+       : Parent(parent, after), nextItem(0), menu(m), visible(v), goParent(false)
        {
                init();
        }
        ConfigItem(ConfigItem *parent, ConfigItem *after, struct menu *m, bool v)
-       : Parent(parent, after), menu(m), visible(v), goParent(false)
+       : Parent(parent, after), nextItem(0), menu(m), visible(v), goParent(false)
        {
                init();
        }
        ConfigItem(QTreeWidget *parent, ConfigItem *after, bool v)
-       : Parent(parent, after), menu(0), visible(v), goParent(true)
+       : Parent(parent, after), nextItem(0), menu(0), visible(v), goParent(true)
        {
                init();
        }
This page took 1.480567 seconds and 5 git commands to generate.