From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1ORqDG-0001So-G4 for garchives@archives.gentoo.org; Thu, 24 Jun 2010 17:27:42 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 60156E0A7F; Thu, 24 Jun 2010 17:27:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 3BF41E0A7F for ; Thu, 24 Jun 2010 17:27:41 +0000 (UTC) Received: from corvid.gentoo.org (corvid.gentoo.org [208.92.234.79]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id BE2A41B4050 for ; Thu, 24 Jun 2010 17:27:40 +0000 (UTC) Received: by corvid.gentoo.org (Postfix, from userid 2166) id 547D62CF4C; Thu, 24 Jun 2010 17:27:37 +0000 (UTC) From: "Samuli Suominen (ssuominen)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, ssuominen@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in kde-misc/rsibreak/files: rsibreak-0.10-gcc45.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: rsibreak-0.10-gcc45.patch X-VCS-Directories: kde-misc/rsibreak/files X-VCS-Committer: ssuominen X-VCS-Committer-Name: Samuli Suominen Content-Type: text/plain; charset=utf8 Message-Id: <20100624172738.547D62CF4C@corvid.gentoo.org> Date: Thu, 24 Jun 2010 17:27:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 78956554-5419-4ace-8db9-62224c83eeb9 X-Archives-Hash: a489a03c425fd78605d54725b1a277ed ssuominen 10/06/24 17:27:37 Added: rsibreak-0.10-gcc45.patch Log: Fix building with GCC 4.5+ wrt #322525 by Markos Chandras. (Portage version: 2.2_rc67/cvs/Linux x86_64) Revision Changes Path 1.1 kde-misc/rsibreak/files/rsibreak-0.10-gcc45.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-misc/rsibreak/= files/rsibreak-0.10-gcc45.patch?rev=3D1.1&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-misc/rsibreak/= files/rsibreak-0.10-gcc45.patch?rev=3D1.1&content-type=3Dtext/plain Index: rsibreak-0.10-gcc45.patch =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D http://bugs.gentoo.org/322525 --- src/CMakeLists.txt +++ src/CMakeLists.txt @@ -49,7 +49,7 @@ breakcontrol.cpp =20 QT4_ADD_DBUS_ADAPTOR( rsibreak_sources org.rsibreak.rsiwidget.xml -rsiwidget.h RSIObject::RSIObject +rsiwidget.h RSIObject ) =20 # compilation --- src/rsitimer.cpp +++ src/rsitimer.cpp @@ -490,7 +490,7 @@ void RSITimer::readConfig() m_ignoreIdleForTinyBreaks =3D config.readEntry( "IgnoreIdleForTinyBr= eaks", false ); =20 config =3D KGlobal::config()->group( "General" ); - m_lastrunDt =3D config.readEntry( "LastRunTimeStamp", QDateTime::QDa= teTime() ); + m_lastrunDt =3D config.readEntry( "LastRunTimeStamp", QDateTime() ); m_lastrunTiny =3D config.readEntry( "LastRunTinyLeft", 0 ); m_lastrunBig =3D config.readEntry( "LastRunBigLeft", 0 ); }