Support focus animation for listbox
[vuplus_dvbapp] / lib / base / eptrlist.h
index 7512305..361323c 100644 (file)
@@ -164,7 +164,7 @@ public:
                // returns a pointer to this new vector ( the reserved memory must deletet from the receiver !! )
                std::vector<T>* v=new std::vector<T>();
                v->reserve( std::list<T>::size() );
-    for ( std_list_T_iterator it( std::list<T*>::begin() ); it != std::list<T*>::end(); it++)
+               for ( std_list_T_iterator it( std::list<T*>::begin() ); it != std::list<T*>::end(); it++)
                        v->push_back( **it );
 
                return v;
@@ -174,7 +174,7 @@ public:
        {
                // added a new item to the list... in order
                // returns a iterator to the new item
-               return insert( std::lower_bound( std::list<T*>::begin(), std::list<T*>::end(), e, less()), e );
+               return this->insert( std::lower_bound( std::list<T*>::begin(), std::list<T*>::end(), e, less()), e );
        }
 
 };
@@ -804,7 +804,7 @@ public:
        {
                // added a new item to the list... in order
                // returns a iterator to the new item
-               return insert( std::lower_bound( std::list<ePtr<T> >::begin(), e, std::list<ePtr<T> >::end()), e );
+               return this->insert( std::lower_bound( std::list<ePtr<T> >::begin(), e, std::list<ePtr<T> >::end()), e );
        }
 
 };