diff -r 6dfc5f825351 -r 50bf9db68373 clfwrapper/ClientSrc/CCLFDefaultOperation.cpp --- a/clfwrapper/ClientSrc/CCLFDefaultOperation.cpp Fri Mar 19 09:38:01 2010 +0200 +++ b/clfwrapper/ClientSrc/CCLFDefaultOperation.cpp Fri Apr 16 15:23:55 2010 +0300 @@ -102,8 +102,7 @@ void AppendItemsToArrayL( const TArray& aSourceArray, RPointerArray& aDestArray ) { - const TInt count( aSourceArray.Count() ); - for( TInt i = 0 ; i < count ; ++i ) + for( TInt i = aSourceArray.Count() - 1; i >=0; i--) { aDestArray.AppendL( aSourceArray[ i ] ); }