Ref T730, CPP check issues fixed

This commit is contained in:
Klaus Basan
2019-10-11 15:05:11 +02:00
committed by Mat Sutcliffe
parent 1d9cd50463
commit 30baa12a86
11 changed files with 221 additions and 222 deletions

View File

@@ -332,7 +332,7 @@ public:
\sa QJsonWebToken::getRandLength()
*/
void setRandLength(const int &intRandLength);
void setRandLength(int intRandLength);
/**
@@ -397,8 +397,8 @@ private:
QString m_strSecret;
QString m_strAlgorithm;
int m_intRandLength ;
QString m_strRandAlphanum;
int m_intRandLength = 10;
QString m_strRandAlphanum = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
// helpers
QByteArray m_byteAllData;