summaryrefslogtreecommitdiff
path: root/net/osrtspproxy/files/patch-libapp-tlist.h
blob: dcd72c4f0e81efbc29dbd8a6fdeec00ae27c1c07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
--- libapp/tlist.h.orig	Mon Sep 20 15:00:01 2004
+++ libapp/tlist.h	Mon Sep 20 15:00:36 2004
@@ -94,7 +94,7 @@
         T& operator*( void )
         {
             assert( m_pList && m_pNode );
-            return m_pNode->GetData();
+            return this->m_pNode->GetData();
         }
     protected:
         Iterator( TSingleList<T>* pList, TSingleNode* pNode ) :
@@ -114,7 +114,7 @@
         const T& operator*( void ) const
         {
             assert( m_pList && m_pNode );
-            return m_pNode->GetData();
+            return this->m_pNode->GetData();
         }
     protected:
         ConstIterator( const TSingleList<T>* pList, TSingleNode* pNode ) :
@@ -282,7 +282,7 @@
         T& operator*( void )
         {
             assert( m_pList && m_pNode );
-            return m_pNode->GetData();
+            return this->m_pNode->GetData();
         }
     protected:
         Iterator( const TDoubleList<T>* pList, TDoubleNode* pNode ) :
@@ -302,7 +302,7 @@
         const T& operator*( void ) const
         {
             assert( m_pList && m_pNode );
-            return m_pNode->GetData();
+            return this->m_pNode->GetData();
         }
     protected:
         ConstIterator( const TDoubleList<T>* pList, TDoubleNode* pNode ) :