MCPcopy Create free account
hub / github.com/altairwei/WizNotePlus / getBizGuid

Method getBizGuid

src/database/WizDatabase.cpp:2433–2446  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2431}
2432
2433bool 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
2448bool WizDatabase::getGroupData(const QString& groupGUID, WIZGROUPDATA& group)
2449{

Callers 2

SaveServerErrorFunction · 0.80
UploadListFunction · 0.80

Calls 2

isEmptyMethod · 0.80
metaMethod · 0.80

Tested by

no test coverage detected