pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/games/kdegames3 Fix a number of implicit template refe...
details: https://anonhg.NetBSD.org/pkgsrc/rev/70c0b2f2c8cc
branches: trunk
changeset: 515003:70c0b2f2c8cc
user: joerg <joerg%pkgsrc.org@localhost>
date: Wed Jun 21 20:43:23 2006 +0000
description:
Fix a number of implicit template reference, exposed by games/boson.
Bump revision since a header file is changed.
diffstat:
games/kdegames3/Makefile | 3 +-
games/kdegames3/distinfo | 3 +-
games/kdegames3/patches/patch-aa | 62 ++++++++++++++++++++++++++++++++++++++++
3 files changed, 66 insertions(+), 2 deletions(-)
diffs (89 lines):
diff -r 1b3d1244f393 -r 70c0b2f2c8cc games/kdegames3/Makefile
--- a/games/kdegames3/Makefile Wed Jun 21 20:41:27 2006 +0000
+++ b/games/kdegames3/Makefile Wed Jun 21 20:43:23 2006 +0000
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.40 2006/06/01 14:22:57 markd Exp $
+# $NetBSD: Makefile,v 1.41 2006/06/21 20:43:23 joerg Exp $
DISTNAME= kdegames-${_KDE_VERSION}
+PKGREVISION= 1
CATEGORIES= games
COMMENT= Games for the KDE integrated X11 desktop
diff -r 1b3d1244f393 -r 70c0b2f2c8cc games/kdegames3/distinfo
--- a/games/kdegames3/distinfo Wed Jun 21 20:41:27 2006 +0000
+++ b/games/kdegames3/distinfo Wed Jun 21 20:43:23 2006 +0000
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.29 2006/06/01 14:22:57 markd Exp $
+$NetBSD: distinfo,v 1.30 2006/06/21 20:43:23 joerg Exp $
SHA1 (kdegames-3.5.3.tar.bz2) = 816b5884c67091fb1c5af924778b10b4eeba968c
RMD160 (kdegames-3.5.3.tar.bz2) = 36ea1609fcc5cd627b16c9e225c309ff8ed212b3
Size (kdegames-3.5.3.tar.bz2) = 10728200 bytes
+SHA1 (patch-aa) = fd39c86460f3fee9db2242179bca7401026cfe88
diff -r 1b3d1244f393 -r 70c0b2f2c8cc games/kdegames3/patches/patch-aa
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/games/kdegames3/patches/patch-aa Wed Jun 21 20:43:23 2006 +0000
@@ -0,0 +1,62 @@
+$NetBSD: patch-aa,v 1.5 2006/06/21 20:43:23 joerg Exp $
+
+--- libkdegames/kgame/kgamepropertylist.h.orig 2006-06-21 17:24:41.000000000 +0000
++++ libkdegames/kgame/kgamepropertylist.h
+@@ -53,7 +53,7 @@ public:
+ {
+ Iterator it;
+ uint cnt=0;
+- for( it = begin(); it != end(); ++it )
++ for( it = this->begin(); it != this->end(); ++it )
+ {
+ if (me==it)
+ {
+@@ -61,7 +61,7 @@ public:
+ }
+ cnt++;
+ }
+- return count();
++ return this->count();
+ }
+
+ Iterator insert( Iterator it, const type& d )
+@@ -88,7 +88,7 @@ public:
+ return it;
+ }
+
+- void prepend( const type& d) { insert(begin(),d); }
++ void prepend( const type& d) { insert(this->begin(),d); }
+
+ void append( const type& d )
+ {
+@@ -181,10 +181,10 @@ public:
+ {
+ kdDebug(11001) << "KGamePropertyList save "<<id() << endl;
+ type data;
+- uint size=count();
++ uint size = this->count();
+ s << size;
+ Iterator it;
+- for( it = begin(); it != end(); ++it )
++ for( it = this->begin(); it != this->end(); ++it )
+ {
+ data=*it;
+ s << data;
+@@ -203,7 +203,7 @@ public:
+ uint i;
+ type data;
+ s >> i >> data;
+- it=at(i);
++ it=this->at(i);
+ QValueList<type>::insert(it,data);
+ // kdDebug(11001) << "CmdInsert:id="<<id()<<" i="<<i<<" data="<<data <<endl;
+ if (isEmittingSignal()) emitSignal();
+@@ -222,7 +222,7 @@ public:
+ {
+ uint i;
+ s >> i;
+- it=at(i);
++ it=this->at(i);
+ QValueList<type>::remove(it);
+ kdDebug(11001) << "CmdRemove:id="<<id()<<" i="<<i <<endl;
+ if (isEmittingSignal()) emitSignal();
Home |
Main Index |
Thread Index |
Old Index