diff options
author | joerg <joerg@pkgsrc.org> | 2013-04-14 19:44:54 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2013-04-14 19:44:54 +0000 |
commit | bd3e03f39579732e34cab6bd1c6c1f566e829959 (patch) | |
tree | 1e8420060bf7aa62df800a9edc6c68d208ca87c7 /net/kdenetwork4 | |
parent | fdaea6d61d588020ed01454f20980b8874f131d7 (diff) | |
download | pkgsrc-bd3e03f39579732e34cab6bd1c6c1f566e829959.tar.gz |
Deal with the vexing parse issue.
Diffstat (limited to 'net/kdenetwork4')
-rw-r--r-- | net/kdenetwork4/distinfo | 3 | ||||
-rw-r--r-- | net/kdenetwork4/patches/patch-kget_core_transferhistorystore.cpp | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/net/kdenetwork4/distinfo b/net/kdenetwork4/distinfo index 0dd82e6e9be..129ea258112 100644 --- a/net/kdenetwork4/distinfo +++ b/net/kdenetwork4/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.21 2013/04/03 10:51:59 markd Exp $ +$NetBSD: distinfo,v 1.22 2013/04/14 19:44:54 joerg Exp $ SHA1 (kdenetwork-4.10.2.tar.xz) = 972526be8275a8adcb6e4fa51188a5dad83a0b14 RMD160 (kdenetwork-4.10.2.tar.xz) = 1ab2675e453d7bc39bb51a192d4e7166404dc351 @@ -8,4 +8,5 @@ SHA1 (patch-ab) = 0743b3b6c994623c507b8bcd52ee01dad31cf56f SHA1 (patch-ae) = 765d48550d2d8b7a59a1593a669b0909fef3bd96 SHA1 (patch-af) = ebd1bc3ae40b5cd551a1283e28fb0f4a80764cfb SHA1 (patch-kget_CMakeLists.txt) = 91029f47cf50dbdd31b3ba63bf8e4e35c303f6cb +SHA1 (patch-kget_core_transferhistorystore.cpp) = 4db4ecea52a77a076b732d2d0ac3bb1e4d821c09 SHA1 (patch-kopete_protocols_wlm_CMakeLists.txt) = bf4929a7e872adb13b2017957801385ca9623f37 diff --git a/net/kdenetwork4/patches/patch-kget_core_transferhistorystore.cpp b/net/kdenetwork4/patches/patch-kget_core_transferhistorystore.cpp new file mode 100644 index 00000000000..377e0d8115e --- /dev/null +++ b/net/kdenetwork4/patches/patch-kget_core_transferhistorystore.cpp @@ -0,0 +1,15 @@ +$NetBSD: patch-kget_core_transferhistorystore.cpp,v 1.1 2013/04/14 19:44:54 joerg Exp $ + +Deal with the vexing parse issue. + +--- kget/core/transferhistorystore.cpp.orig 2013-04-14 16:30:38.000000000 +0000 ++++ kget/core/transferhistorystore.cpp +@@ -554,7 +554,7 @@ NepomukStore::~NepomukStore() + 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<Nepomuk::Query::Result>&)), this, SLOT(loadResult(const QList<Nepomuk::Query::Result>&))); |