0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-11-25 00:18:06 +03:00

dateFormat and dateTimeFormat functions have been improved

This commit is contained in:
Arin Alexander
2019-07-01 17:01:55 +03:00
parent e6371efbec
commit e03175f678
3 changed files with 18 additions and 19 deletions

View File

@@ -73,7 +73,7 @@ private:
void RC5_SETUP(const char *K);
void RC5_ENCRYPT(WORD *pt, WORD *ct);
void RC5_DECRYPT(WORD *ct, WORD *pt);
WORD S[26];
WORD S[26] = {0};
bool m_prepared;
};