Skip to content

Commit

Permalink
Port xconfig to Qt5 - Change ConfigItem constructor parent type.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Boris Barbulovski authored and Michal Marek committed Oct 14, 2015
1 parent a5225e9 commit d960b98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/kconfig/qconf.h
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public slots:
class ConfigItem : public QTreeWidgetItem {
typedef class QTreeWidgetItem Parent;
public:
ConfigItem(QTreeWidget *parent, ConfigItem *after, struct menu *m, bool v)
ConfigItem(ConfigList *parent, ConfigItem *after, struct menu *m, bool v)
: Parent(parent, after), nextItem(0), menu(m), visible(v), goParent(false)
{
init();
Expand All @@ -133,7 +133,7 @@ class ConfigItem : public QTreeWidgetItem {
{
init();
}
ConfigItem(QTreeWidget *parent, ConfigItem *after, bool v)
ConfigItem(ConfigList *parent, ConfigItem *after, bool v)
: Parent(parent, after), nextItem(0), menu(0), visible(v), goParent(true)
{
init();
Expand Down

0 comments on commit d960b98

Please sign in to comment.