-----------------------------------------------------------------------------
| 348 | |
| 349 | //----------------------------------------------------------------------------- |
| 350 | void pqPythonTabWidget::updateTrace(const QString& str) |
| 351 | { |
| 352 | this->createParaviewTraceTab(); |
| 353 | |
| 354 | const int traceWidgetId = this->indexOf(this->TraceWidget); |
| 355 | this->tabBar()->setCurrentIndex(traceWidgetId); |
| 356 | this->TraceWidget->setText(str); |
| 357 | } |
| 358 | |
| 359 | //----------------------------------------------------------------------------- |
| 360 | void pqPythonTabWidget::stopTrace(const QString& str) |
nothing calls this directly
no test coverage detected