| 1301 | |
| 1302 | |
| 1303 | bool WizDatabase::getBizMetaName(const QString &strBizGUID, QString &strMetaName) |
| 1304 | { |
| 1305 | if (strBizGUID.isEmpty()) |
| 1306 | return false; |
| 1307 | |
| 1308 | int count = getMetaDef("Bizs", "Count").toInt(); |
| 1309 | // |
| 1310 | for (int i = 0; i < count; i++) |
| 1311 | { |
| 1312 | QString bizSection = "Biz_" + QString::number(i); |
| 1313 | |
| 1314 | if (strBizGUID == getMetaDef(bizSection, "GUID")) |
| 1315 | { |
| 1316 | strMetaName = bizSection; |
| 1317 | return true; |
| 1318 | } |
| 1319 | } |
| 1320 | |
| 1321 | return false; |
| 1322 | } |
| 1323 | |
| 1324 | bool WizDatabase::initZiwReaderForEncryption() |
| 1325 | { |
no test coverage detected