From: Dave Jones scripts/kconfig/qconf.h:25: error: extra qualification ‘ConfigSettings::’ on member ‘readSizes’ scripts/kconfig/qconf.h:26: error: extra qualification ‘ConfigSettings::’ on member ‘writeSizes’ scripts/kconfig/qconf.h:127: error: extra qualification ‘ConfigList::’ on member ‘updateMenuList’ Signed-off-by: Dave Jones Cc: Roman Zippel Signed-off-by: Andrew Morton --- scripts/kconfig/qconf.h | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff -puN scripts/kconfig/qconf.h~fix-gcc41-build-failure-on-xconfig scripts/kconfig/qconf.h --- devel/scripts/kconfig/qconf.h~fix-gcc41-build-failure-on-xconfig 2006-01-04 01:15:43.000000000 -0800 +++ devel-akpm/scripts/kconfig/qconf.h 2006-01-04 01:15:43.000000000 -0800 @@ -22,8 +22,8 @@ public: #if QT_VERSION >= 300 void readListSettings(); - QValueList ConfigSettings::readSizes(const QString& key, bool *ok); - bool ConfigSettings::writeSizes(const QString& key, const QValueList& value); + QValueList readSizes(const QString& key, bool *ok); + bool writeSizes(const QString& key, const QValueList& value); #endif bool showAll; @@ -124,7 +124,7 @@ public: void setParentMenu(void); template - void ConfigList::updateMenuList(P*, struct menu*); + void updateMenuList(P*, struct menu*); bool updateAll; _