diff options
author | Boris Barbulovski <bbarbulovski@gmail.com> | 2015-09-22 14:36:30 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.com> | 2015-10-14 08:59:03 -0400 |
commit | d960b9889984d29182c17d55b3cd95c3d8d9d598 (patch) | |
tree | 3b5c79b25dbeaad82d28387b09dd98a0632c0660 /scripts | |
parent | a5225e9bc915e9010f31b0ff420a8ce3df669bc6 (diff) |
Port xconfig to Qt5 - Change ConfigItem constructor parent type.
Signed-off-by: Boris Barbulovski <bbarbulovski@gmail.com>
Signed-off-by: Thiago Macieira <thiago.macieira@intel.com>
Signed-off-by: Michal Marek <mmarek@suse.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kconfig/qconf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kconfig/qconf.h b/scripts/kconfig/qconf.h index d86ae3c26979..000403de5df0 100644 --- a/scripts/kconfig/qconf.h +++ b/scripts/kconfig/qconf.h | |||
@@ -123,7 +123,7 @@ public: | |||
123 | class ConfigItem : public QTreeWidgetItem { | 123 | class ConfigItem : public QTreeWidgetItem { |
124 | typedef class QTreeWidgetItem Parent; | 124 | typedef class QTreeWidgetItem Parent; |
125 | public: | 125 | public: |
126 | ConfigItem(QTreeWidget *parent, ConfigItem *after, struct menu *m, bool v) | 126 | ConfigItem(ConfigList *parent, ConfigItem *after, struct menu *m, bool v) |
127 | : Parent(parent, after), nextItem(0), menu(m), visible(v), goParent(false) | 127 | : Parent(parent, after), nextItem(0), menu(m), visible(v), goParent(false) |
128 | { | 128 | { |
129 | init(); | 129 | init(); |
@@ -133,7 +133,7 @@ public: | |||
133 | { | 133 | { |
134 | init(); | 134 | init(); |
135 | } | 135 | } |
136 | ConfigItem(QTreeWidget *parent, ConfigItem *after, bool v) | 136 | ConfigItem(ConfigList *parent, ConfigItem *after, bool v) |
137 | : Parent(parent, after), nextItem(0), menu(0), visible(v), goParent(true) | 137 | : Parent(parent, after), nextItem(0), menu(0), visible(v), goParent(true) |
138 | { | 138 | { |
139 | init(); | 139 | init(); |