| 358 | } |
| 359 | |
| 360 | void NotebookView::showStatistics() { |
| 361 | if (!m_contextMenuColumn) |
| 362 | return; |
| 363 | |
| 364 | QString dlgTitle(i18n("%1: variable statistics", m_contextMenuColumn->name())); |
| 365 | auto* dlg = new StatisticsDialog(dlgTitle, QVector<Column*>({m_contextMenuColumn})); |
| 366 | dlg->setModal(true); |
| 367 | dlg->show(); |
| 368 | QApplication::processEvents(QEventLoop::AllEvents, 0); |
| 369 | QTimer::singleShot(0, this, [=]() { |
| 370 | dlg->showStatistics(); |
| 371 | }); |
| 372 | } |
no test coverage detected