| 47 | } |
| 48 | |
| 49 | void JSPluginSpec::warn(const QString &msg) |
| 50 | { |
| 51 | const QString appDirName = m_dir.dirName(); |
| 52 | qWarning() << QString("%1: %2") |
| 53 | .arg(appDirName) |
| 54 | .arg(msg); |
| 55 | } |
| 56 | |
| 57 | bool JSPluginSpec::validate() { |
| 58 | if (m_manifestVersion != MANIFESTVERSION) { |
no test coverage detected