| 88 | } |
| 89 | |
| 90 | void JSAPIObject::warning(const QString& msg) |
| 91 | { |
| 92 | Q_ASSERT(Dialogs::instance() != nullptr); |
| 93 | Dialogs::instance()->messageDialog(tr("Warning"), msg); |
| 94 | } |
| 95 | |
| 96 | void JSAPIObject::get_text(const QString& msg, const QString& defaultValue, const QJSValue& callbackFunc) |
| 97 | { |
nothing calls this directly
no test coverage detected