-----------------------------------------------------------------------------
| 186 | |
| 187 | //----------------------------------------------------------------------------- |
| 188 | bool ctkAbstractPythonManager::pythonErrorOccured()const |
| 189 | { |
| 190 | if (!PythonQt::self()) |
| 191 | { |
| 192 | qWarning() << Q_FUNC_INFO << " failed: PythonQt is not initialized"; |
| 193 | return false; |
| 194 | } |
| 195 | return PythonQt::self()->hadError(); |
| 196 | } |
| 197 | |
| 198 | //----------------------------------------------------------------------------- |
| 199 | void ctkAbstractPythonManager::resetErrorFlag() |
no outgoing calls