Index: sources/cloudsync/CloudSyncController.h =================================================================== diff -u -rcd7956150072dcb5264c891ee363074623052ead -rf9912fcd4b809e5a7fd59cf855488b6a762198d0 --- sources/cloudsync/CloudSyncController.h (.../CloudSyncController.h) (revision cd7956150072dcb5264c891ee363074623052ead) +++ sources/cloudsync/CloudSyncController.h (.../CloudSyncController.h) (revision f9912fcd4b809e5a7fd59cf855488b6a762198d0) @@ -78,32 +78,32 @@ enum Errors_Enum { eError_Unknown = 500, // Unknown error, initial error before error check - eError_HeaderCount , - eError_Timestamp , - eError_Sequence , - eError_CRC , - eError_MessageID , - eError_InvalidID , - eError_ParamCount , - eError_ParamMismatch , - eError_ParamMissing , + eError_HeaderCount = 501, + eError_Timestamp = 502, + eError_Sequence = 503, + eError_CRC = 504, + eError_MessageID = 505, + eError_InvalidID = 506, + eError_ParamCount = 507, + eError_ParamMismatch = 508, + eError_ParamMissing = 509, - eError_NoHistory , - eError_Duplicate , + eError_NoHistory = 510, + eError_Duplicate = 511, - eError_LogFolder , - eError_LogFileInp , + eError_LogFolder = 512, + eError_LogFileInp = 513, - eError_CredentialMake , // the UI vault folder for cloudsync credentials can't be created. - eError_CredentialFile , // the credential files sent to UI can't be find or read or doesn't exist.. - eError_CredentialCopy , // the credential files sent to UI can't be copied to UI vault. - eError_CredentialRemove , // the credential files sent to UI can't be removed. - eError_CredentialEmpty , // the UI folder doesn't have credential files. + eError_CredentialMake = 514, // the UI vault folder for cloudsync credentials can't be created. + eError_CredentialFile = 515, // the credential files sent to UI can't be find or read or doesn't exist.. + eError_CredentialCopy = 516, // the credential files sent to UI can't be copied to UI vault. + eError_CredentialRemove = 517, // the credential files sent to UI can't be removed. + eError_CredentialEmpty = 518, // the UI folder doesn't have credential files. - eError_TxCodeNoParam , // the received Tx Code not provided - eError_TxCodeEmpty , // the received Tx Code is empty + eError_TxCodeNoParam = 519, // the received Tx Code not provided + eError_TxCodeEmpty = 520, // the received Tx Code is empty - eError_OutFileEmpty , // Out file has changed from CS2UI but the content is empty. + eError_OutFileEmpty = 521, // Out file has changed from CS2UI but the content is empty. }; typedef QHash MessageList;