Exemplo n.º 1
0
void EventView::slotCreateTimeSheet()
{
    const int index = m_comboBox->currentIndex();
    const TimeSpan span = m_timeSpans[index].timespan;
    WeeklyTimeSheetReport *timeSheet = new WeeklyTimeSheetReport( this );
    timeSheet->setReportProperties( span.first, span.second, 0, true );
    timeSheet->exec();
    // Deletes itself on close.
}