Page 1 of 1

Patch to QxCommon/QxSimpleCrypt.cpp

PostPosted: Mon Feb 15, 2016 2:51 pm
by mdw
QxCommon/QxSimpleCrypt.cpp needs an include to qdatastream.h since it makes use of the QDataStream class.

So
#include <QtCore/qdatetime.h>
#include <QtCore/qcryptographichash.h>

needs to become:
#include <QtCore/qdatetime.h>
#include <QtCore/qcryptographichash.h>
#include <QtCore/qdatastream.h>


Otherwise I did not manage to get the library compiled on Qt 5.5 with MS Visual Studio 2013.

Re: Patch to QxCommon/QxSimpleCrypt.cpp

PostPosted: Mon Feb 15, 2016 3:06 pm
by qxorm
Hello,

QxCommon/QxSimpleCrypt.cpp needs an include to qdatastream.h

Thank you for your patch :)
It is already fixed in QxOrm 1.4.2 BETA versions : http://www.qxorm.com/version/QxOrm_1.4.2_BETA_39.zip

Re: Patch to QxCommon/QxSimpleCrypt.cpp

PostPosted: Tue Feb 16, 2016 10:12 am
by mdw
Cool :)