Merge remote-tracking branch 'OE-2.1/master' into vuplus-3.0
[vuplus_openvuplus_3.0] / meta-openvuplus / recipes-vuplus / enigma2 / enigma2 / enigma2_vuplus_eptrlist_insert.patch
1 diff --git a/lib/base/eptrlist.h b/lib/base/eptrlist.h
2 index 0da46da..361323c 100644
3 --- a/lib/base/eptrlist.h
4 +++ b/lib/base/eptrlist.h
5 @@ -174,7 +174,7 @@ public:
6         {
7                 // added a new item to the list... in order
8                 // returns a iterator to the new item
9 -               return insert( std::lower_bound( std::list<T*>::begin(), std::list<T*>::end(), e, less()), e );
10 +               return this->insert( std::lower_bound( std::list<T*>::begin(), std::list<T*>::end(), e, less()), e );
11         }
12  
13  };
14 @@ -804,7 +804,7 @@ public:
15         {
16                 // added a new item to the list... in order
17                 // returns a iterator to the new item
18 -               return insert( std::lower_bound( std::list<ePtr<T> >::begin(), e, std::list<ePtr<T> >::end()), e );
19 +               return this->insert( std::lower_bound( std::list<ePtr<T> >::begin(), e, std::list<ePtr<T> >::end()), e );
20         }
21  
22  };