示例#1
0
bool CWizApiBase::callAttachmentGetList(__int64 nVersion)
{
    //Q_EMIT processLog(tr("Syncing attachment list: version: ") + QString::number(nVersion));
    return callGetList(SyncMethod_GetAttachmentList, nVersion);
}
示例#2
0
bool CWizApiBase::callDocumentGetList(__int64 nVersion)
{
    //Q_EMIT processLog(tr("Syncing note list, version: ") + QString::number(nVersion));
    return callGetList(SyncMethod_GetDocumentList, nVersion);
}
示例#3
0
bool CWizApiBase::callDeletedGetList(__int64 nVersion)
{
    //Q_EMIT processLog(tr("Syncing deleted items, version: ") + QString::number(nVersion));
    return callGetList(SyncMethod_GetDeletedList, nVersion);
}
示例#4
0
bool CWizApiBase::callStyleGetList(__int64 nVersion)
{
    //Q_EMIT processLog(tr("Syncing styles, version: ") + QString::number(nVersion));
    return callGetList(SyncMethod_GetStyleList, nVersion);
}
示例#5
0
bool CWizApi::callTagGetList(__int64 nVersion)
{
    Q_EMIT processLog(tr("Syncing tags, version: ") + QString::number(nVersion));
    return callGetList(SyncMethod_GetTagList, nVersion);
}