$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();
