-----------------------------------------------------------------------------
| 333 | |
| 334 | //----------------------------------------------------------------------------- |
| 335 | void pqPythonTabWidget::createParaviewTraceTab() |
| 336 | { |
| 337 | if (!this->TraceWidget) |
| 338 | { |
| 339 | pqPythonTextArea* widget = this->getCurrentTextArea(); |
| 340 | if (!widget->isEmpty() || widget->isLinked()) |
| 341 | { |
| 342 | this->createNewEmptyTab(); |
| 343 | widget = this->getCurrentTextArea(); |
| 344 | } |
| 345 | this->TraceWidget = widget; |
| 346 | } |
| 347 | } |
| 348 | |
| 349 | //----------------------------------------------------------------------------- |
| 350 | void pqPythonTabWidget::updateTrace(const QString& str) |
no test coverage detected