Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750757AbVL3B7T (ORCPT ); Thu, 29 Dec 2005 20:59:19 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1750765AbVL3B7T (ORCPT ); Thu, 29 Dec 2005 20:59:19 -0500 Received: from mx1.redhat.com ([66.187.233.31]:55709 "EHLO mx1.redhat.com") by vger.kernel.org with ESMTP id S1750757AbVL3B7T (ORCPT ); Thu, 29 Dec 2005 20:59:19 -0500 Date: Thu, 29 Dec 2005 20:59:08 -0500 From: Dave Jones To: torvalds@osdl.org Cc: Linux Kernel Subject: fix gcc4.1 build failure on xconfig Message-ID: <20051230015908.GA19635@redhat.com> Mail-Followup-To: Dave Jones , torvalds@osdl.org, Linux Kernel Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.4.2.1i Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1342 Lines: 33 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 --- linux-2.6/scripts/kconfig/qconf.h~ 2005-12-29 20:57:36.000000000 -0500 +++ linux-2.6/scripts/kconfig/qconf.h 2005-12-29 20:57:55.000000000 -0500 @@ -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; - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/