Issue with my issue pane
-
HI
I have an issue with my issue pane, I had some code in my .pro file that shouldn't be there and the issues tab pointed it out: "unknown modules in QT...."but when I removed the lines the issue still remains in the issue tab, even when creating a brand new project.
Please help
Jeandre -
Hi @Jeandre ,
After deleting that code :
- clean / execute qMake
- delete automatically created folders for your app :
build-YourAppName-Desktop_Qt_x_x_x_CompilerName-Release
build-YourAppName-Desktop_Qt_x_x_x_CompilerName-Debug
maybe this can solve your issue.
-
Hi @Jeandre ,
After deleting that code :
- clean / execute qMake
- delete automatically created folders for your app :
build-YourAppName-Desktop_Qt_x_x_x_CompilerName-Release
build-YourAppName-Desktop_Qt_x_x_x_CompilerName-Debug
maybe this can solve your issue.
-
@LeLev
Thanks for your quick reply, but unfortunately it didn't help, thinking there must be a cache file somewhere? -
Got it!
my code was QT +=core that I removed, so I had to reverse it again with:QT -=core
Thanks for your help :)
-
Got it!
my code was QT +=core that I removed, so I had to reverse it again with:QT -=core
Thanks for your help :)