Peter Kümmel wrote:
maybe QT_VERSION_CHECK is new in qt4.3, could you find it in
src/corelib/global/qglobal.h?

you're right, it's not there (4.2.1)

Does it help when you add for Qt<4.3?

#define QT_VERSION_CHECK(major, minor, patch) ((major<<16)|(minor<<8)|(patch))

when i add this to the header file everything works fine

thanks!!


Reply via email to