| 2431 | } |
| 2432 | |
| 2433 | bool WizDatabase::getBizGuid(const QString &strGroupGUID, QString &strBizGUID) |
| 2434 | { |
| 2435 | if (strGroupGUID.isEmpty()) |
| 2436 | return false; |
| 2437 | |
| 2438 | IWizSyncableDatabase* db = getPersonalDatabase(); |
| 2439 | if (!db) |
| 2440 | return false; |
| 2441 | |
| 2442 | QString groupSection = strGroupGUID.toUpper() + "_BIZGUID"; |
| 2443 | strBizGUID = db->meta("GROUPS", groupSection); |
| 2444 | |
| 2445 | return true; |
| 2446 | } |
| 2447 | |
| 2448 | bool WizDatabase::getGroupData(const QString& groupGUID, WIZGROUPDATA& group) |
| 2449 | { |
no test coverage detected