| 400 | //N/C - NNE - 20140520 : END |
| 401 | |
| 402 | void pullActionFromElement(const QDomElement &element) |
| 403 | { |
| 404 | if (!element.hasAttribute(aActionMedia)) { |
| 405 | return; |
| 406 | } |
| 407 | |
| 408 | QString path = element.attribute(aActionMedia); |
| 409 | if (path.isNull()) { |
| 410 | return; |
| 411 | } |
| 412 | |
| 413 | QString uid = strIdFrom(path); |
| 414 | if (uid.isNull()) { |
| 415 | return; |
| 416 | } |
| 417 | |
| 418 | mDomIdsMap.insert(uid, path); |
| 419 | } |
| 420 | |
| 421 | void teacherGuideToContainer(const QDomElement &element) |
| 422 | { |