phonebookui/cnthistorymodel/src/cnthistorymodel_p.cpp
changeset 61 d30183af6ca6
parent 53 e6aff7b69165
child 66 554fe4dbbb59
equal deleted inserted replaced
56:d508aa856878 61:d30183af6ca6
   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     }