phonebookui/cnthistorymodel/src/cnthistorymodel_p.cpp
changeset 65 ae724a111993
parent 59 a642906a277a
child 66 554fe4dbbb59
equal deleted inserted replaced
59:a642906a277a 65:ae724a111993
   522         
   522         
   523         // Fetch item from the mapped logs model items
   523         // Fetch item from the mapped logs model items
   524         HItemPointer item = m_logsMap.value( i );
   524         HItemPointer item = m_logsMap.value( i );
   525         
   525         
   526         // Found item in the logs map
   526         // Found item in the logs map
   527         if ( !item.isNull() ) {
   527         if ( !item.isNull() && event ) {
   528             int index = m_List.indexOf( item );
   528             int index = m_List.indexOf( item );
   529             readLogEvent( event, *item );
   529             readLogEvent( event, *item );
   530             indices.append( index );
   530             indices.append( index );
   531         }
   531         }
   532     }
   532     }