Hello everybody,

I use QDevelop 4.3.1 and Exuberant Ctags 5.6. on openSUSE 10.3 or openSUSE 11.0. I need the code completion for a QWidget, but it does not works.

An example:

This is an auto generated main.cpp code from QDevelop.
Qt Code:
  1. #include <QApplication>
  2. #include "mainwindowimpl.h"
  3. //
  4. int main(int argc, char ** argv)
  5. {
  6. QApplication app( argc, argv );
  7. MainWindowImpl win;
  8. win.show();
  9. app.connect( &app, SIGNAL( lastWindowClosed() ), &app, SLOT( quit() ) );
  10. return app.exec();
  11. }
To copy to clipboard, switch view to plain text mode 

On detail I need the QDevelop suggestion connect or so, if I type at the editor "app." oder "app->" but I don't get a proposal. If I type instead of this "win." QDevelop show me my opportunities. What can I do?


Thanks for any ideas.