-----------------------------------------------------------------------------
| 358 | |
| 359 | //----------------------------------------------------------------------------- |
| 360 | void pqPythonTabWidget::stopTrace(const QString& str) |
| 361 | { |
| 362 | this->createParaviewTraceTab(); |
| 363 | |
| 364 | const int traceWidgetId = this->indexOf(this->TraceWidget); |
| 365 | this->tabBar()->setCurrentIndex(traceWidgetId); |
| 366 | this->TraceWidget->setText(str); |
| 367 | this->TraceWidget = nullptr; |
| 368 | this->updateTab(this->widget(traceWidgetId)); |
| 369 | } |
| 370 | |
| 371 | //----------------------------------------------------------------------------- |
| 372 | void pqPythonTabWidget::generateTabName(const pqPythonTextArea* widget, QString& tabName, |
no test coverage detected