Autocompletion in Qt Creator is not working
Ok I found what the issue was. This is because I started using precompiled headers which means many classes are now in stable.h and apparently not found by the editor. I fixed the issue by adding #include "stable.h"
in all the files, like in VC++.