| 71 | } |
| 72 | |
| 73 | bool Branding::readFile(const QString& fn) |
| 74 | { |
| 75 | QFile file(fn); |
| 76 | if (!file.open(QFile::ReadOnly)) { |
| 77 | return false; |
| 78 | } |
| 79 | if (!evaluateXML(&file, domDocument)) { |
| 80 | return false; |
| 81 | } |
| 82 | file.close(); |
| 83 | return true; |
| 84 | } |
| 85 | |
| 86 | Branding::XmlConfig Branding::getUserDefines() const |
| 87 | { |
no test coverage detected