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

Merge tag '1.5.75' into develop

Finish 1.5.75
This commit is contained in:
Arin Alexander
2020-12-25 23:03:11 +03:00
2 changed files with 7 additions and 13 deletions

View File

@@ -29,6 +29,8 @@
****************************************************************************/
#include "lrsimplecrypt.h"
namespace LimeReport {
#if defined(LP64) || defined(_LP64) || defined(__LP64__)
typedef unsigned int WORD; /* Should be 32-bit = 4 bytes */
#else
@@ -62,8 +64,6 @@ void initPt(WTB& pt, QByteArray::Iterator* it, QByteArray::Iterator end){
}
}
namespace LimeReport {
class ChipperPrivate{
friend class Chipper;
public:
@@ -117,7 +117,7 @@ QByteArray Chipper::cryptString(QString value)
{
QByteArray buff;
QByteArray result;
buff += value;
buff += value.toUtf8();
WTB pt, ct, prior;
if (!d->isPrepared())