| 1215 | } |
| 1216 | |
| 1217 | void BridgeApp::targets_add(const QString &computer, const QString &domain, const QString &address, const QString &os, const QString &osDesc, const QString &tag, const QString &info, bool alive) |
| 1218 | { |
| 1219 | TargetData target = {"", computer, domain, address, tag, QIcon(), 0, osDesc, "", 0, info, alive}; |
| 1220 | |
| 1221 | target.Os = stringToOs(os); |
| 1222 | |
| 1223 | QList<TargetData> targets; |
| 1224 | targets.append(target); |
| 1225 | scriptEngine->manager()->GetAdaptix()->TargetsDock->TargetsAdd(targets); |
| 1226 | } |
| 1227 | |
| 1228 | void BridgeApp::targets_add_list(const QVariantList &array) |
| 1229 | { |
nothing calls this directly
no test coverage detected