diff -r 796276a1bdcc -r 9fdee5e1da30 uiservicetab/vimpstui/src/cvimpstuilistboxmodel.cpp --- a/uiservicetab/vimpstui/src/cvimpstuilistboxmodel.cpp Wed Mar 31 21:14:49 2010 +0300 +++ b/uiservicetab/vimpstui/src/cvimpstuilistboxmodel.cpp Wed Apr 14 15:46:18 2010 +0300 @@ -18,6 +18,7 @@ #include "cvimpstuilistboxmodel.h" #include "mvimpstprocessarray.h" +#include "uiservicetabtracer.h" // ======== MEMBER FUNCTIONS ======== @@ -43,6 +44,7 @@ // TInt CVIMPSTUiListBoxModel::NumberOfItems() const { + TRACER_AUTO; if( IsFilterActive() ) { // Something is filtered @@ -79,6 +81,7 @@ // TInt CVIMPSTUiListBoxModel::FilteredItemIndex( TInt aVisibleItemIndex ) const { + TRACER_AUTO; if( !IsFilterActive() ) { // Nothing is filtered @@ -120,6 +123,7 @@ // TInt CVIMPSTUiListBoxModel::VisibleItemIndex( TInt aOriginalIndex ) const { + TRACER_AUTO; if( !IsFilterActive() ) { // Nothing is filtered @@ -162,6 +166,7 @@ // TInt CVIMPSTUiListBoxModel::CountItems() const { + TRACER_AUTO; TInt itemcount = 0; if( Filter() ) { @@ -199,6 +204,7 @@ // TPtrC CVIMPSTUiListBoxModel::ItemAt( TInt aIndex ) const { + TRACER_AUTO; TInt itemcount = -1; if( Filter() ) { @@ -235,6 +241,7 @@ // TBool CVIMPSTUiListBoxModel::IsContactList( TInt aIndex, RArray& aPosArray ) const { + TRACER_AUTO; TInt startInd = aPosArray.Find( aIndex ); if( KErrNotFound == startInd ) {