In manual for QTreeWidget it states that we have to:

include

however when I do that I get error:

d:*********: error: C1083: Cannot open include file: 'QTreeWidget': No such file or directory

However #include gets found.

Where does it go wrong here? Thanks!

有帮助吗?

解决方案

Add QT += widgets (to link with the widgets module) into your .pro file, then run qmake and then build your project.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top