From owner-svn-ports-head@FreeBSD.ORG Thu May 23 11:43:06 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 01DE1A89; Thu, 23 May 2013 11:43:06 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id E878D944; Thu, 23 May 2013 11:43:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4NBh5W9078206; Thu, 23 May 2013 11:43:05 GMT (envelope-from makc@svn.freebsd.org) Received: (from makc@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4NBh5cO078205; Thu, 23 May 2013 11:43:05 GMT (envelope-from makc@svn.freebsd.org) Message-Id: <201305231143.r4NBh5cO078205@svn.freebsd.org> From: Max Brazhnikov Date: Thu, 23 May 2013 11:43:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r318866 - head/net/kdenetwork4/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 May 2013 11:43:06 -0000 Author: makc Date: Thu May 23 11:43:05 2013 New Revision: 318866 URL: http://svnweb.freebsd.org/changeset/ports/318866 Log: Add upstream patch to fix build with clang Added: head/net/kdenetwork4/files/patch-kget__core__transferhistorystore.cpp (contents, props changed) Added: head/net/kdenetwork4/files/patch-kget__core__transferhistorystore.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/kdenetwork4/files/patch-kget__core__transferhistorystore.cpp Thu May 23 11:43:05 2013 (r318866) @@ -0,0 +1,25 @@ +------------------------------------------------------------------------ +r1355676 | rkcosta | 2013-05-20 16:16:41 +0300 (Mon, 20 May 2013) | 6 lines + +Fix most-vexing parse error introduced in r1345874. + +By the way, why is this revision only in branches/KDE/4.10 and not in trunk? + +CCMAIL: david.narvaez@computer.org + + +Index: kget/core/transferhistorystore.cpp +=================================================================== +--- kget/core/transferhistorystore.cpp (revision 1355675) ++++ kget/core/transferhistorystore.cpp (revision 1355676) +@@ -554,7 +554,7 @@ + void NepomukStore::load() + { + Nepomuk::Query::QueryServiceClient * queryService = new Nepomuk::Query::QueryServiceClient(this); +- Nepomuk::Query::ResourceTypeTerm historyTypeTerm(Nepomuk::Types::Class(Nepomuk::HistoryItem::resourceTypeUri())); ++ Nepomuk::Query::ResourceTypeTerm historyTypeTerm((Nepomuk::Types::Class(Nepomuk::HistoryItem::resourceTypeUri()))); + Nepomuk::Query::Query historyQuery(historyTypeTerm); + + connect(queryService, SIGNAL(newEntries(const QList&)), this, SLOT(loadResult(const QList&))); + +------------------------------------------------------------------------