Skip to content
Snippets Groups Projects
Commit 0bf8724d authored by François Cartegnie's avatar François Cartegnie :fingers_crossed:
Browse files

Qt: epg: updateduration: simplify.

(there was no guarantee that each graphic item could be safely casted to
epgitem)
parent cea122b1
No related branches found
No related tags found
No related merge requests found
......@@ -276,21 +276,13 @@ EPGView::~EPGView()
void EPGView::updateDuration()
{
QDateTime lastItem;
QDateTime maxItemTime;
mutex.lock();
QList<QGraphicsItem*> list = items();
for ( int i = 0; i < list.count(); ++i )
{
EPGItem* item = qgraphicsitem_cast<EPGItem*>( list.at( i ) );
if ( !item ) continue;
QDateTime itemEnd = item->start().addSecs( item->duration() );
if ( itemEnd > lastItem )
lastItem = itemEnd;
}
foreach( EPGEventByTimeQMap *epgItemByTime, epgitemsByChannel.values() )
foreach( EPGItem *epgItem, epgItemByTime->values() )
if ( epgItem->end() > maxItemTime ) maxItemTime = epgItem->end();
mutex.unlock();
m_duration = m_startTime.secsTo( lastItem );
m_duration = m_startTime.secsTo( maxItemTime );
emit durationChanged( m_duration );
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment