Qt-interest Archive, July 2007
no completion of Qt classes
Message 1 in thread
hello,
I am using eclipse CDT europa and Qt4.1.0 on a macintosh.
I can use externals tools (qmake -project and qmake, build) to compile
my C++ projects, and it works.
But I have not the completion, although the libraries are recognized:
with the example :
#include <QApplication>
#include <QPushButton>
int main(int argc,char* argv[]){
QApplication app(argc,argv);
QPushButton* button=new QPushButton("quit");
QObject::connect (button,SIGNAL(clicked()),&app,SLOT(quit()));
button->
if I enter ctrl+space I have :
app: Qapplication
argc: int
argv : char*
button:*
Have you got an idea to make it work?
lolveley.
--
[ signature omitted ]