Missing header from Qt
I'm getting error while compiling qt project which #include's < qvaluelist.h > that this file cannot be find,开发者_JAVA百科 yet I'm finding on qt website documentation for this header. How to solve it?
This (and its friend QPtrList) are deprecated in Qt 4. You probably have Qt 3 code.
Look here: Porting to Qt 4
You can either link with the QT3 support library in Qt 4 or replace it with QList.
精彩评论