| 51 | void SetShell(pqPythonShell* shell) { this->Shell = shell; } |
| 52 | |
| 53 | void DisplayText(const char* txt) override |
| 54 | { |
| 55 | if (this->Shell) |
| 56 | { |
| 57 | this->Shell->printString(txt, pqPythonShell::OUTPUT); |
| 58 | } |
| 59 | } |
| 60 | void DisplayErrorText(const char* txt) override |
| 61 | { |
| 62 | if (this->Shell) |
nothing calls this directly
no test coverage detected