| 65 | } |
| 66 | |
| 67 | int YUViewDomElement::findChildValueInt(const QString &tagName, int defaultValue) const |
| 68 | { |
| 69 | auto r = findChildValue(tagName); |
| 70 | return r.isEmpty() ? defaultValue : r.toInt(); |
| 71 | }; |
| 72 | |
| 73 | double YUViewDomElement::findChildValueDouble(const QString &tagName, double defaultValue) const |
| 74 | { |
no test coverage detected