| 22 | S_NORM, S_BUSY, S_ERROR |
| 23 | }; |
| 24 | ScriptState():state(S_NORM){} |
| 25 | ScriptState(const QString &e):info(e) {state = (info.isEmpty()?S_NORM:S_ERROR);} |
| 26 | ScriptState(const char *e) {ScriptState(QString(e));} |
| 27 | ScriptState(StateCode c, const QString &i=""):state(c), info(i) {} |
nothing calls this directly
no test coverage detected