Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

When using Qt in VS2008, IntelliSense does not work properly

I use Qt 4.4.2 in Visual Studio 2008.

When I am writing code, IntelliSense seems to die - it does not show any methods or data members in Qt objects such as QPushButton, does not see the QObject::connect static method, etc.

Is it a typical situation or did I do something wrong while installing the library?

like image 996
chester89 Avatar asked Dec 02 '22 08:12

chester89


1 Answers

Most likely non-standard extensions like public slots: etc.

There's already a FAQ at the Qt site: Intellisense does not work for my Qt application. What's wrong?

like image 177
tstenner Avatar answered Dec 04 '22 22:12

tstenner