tonkv / qdevelop

Automatically exported from code.google.com/p/qdevelop
0 stars 0 forks source link

Code completion require restart to function properly #145

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. create new project, leave the default values and click ok
2. type the following code in the main window constructor
QString x;
x.(press Ctrl + Space)
3. no completion will appear
in order to get this problem fixed do the following
4. build the project
5. save it
6. Close QDevelop
7. Reopen it
8. Test again x.(Ctrl + Space)
9. it works
(you can use this steps with any Qt class you like not necessary QString)

What is the expected output? What do you see instead?
I expected to have code completion updated easily each time I build the
project without having to close the entire IDE and reopening it

What version of the product are you using? On what operating system?
svn

Original issue reported on code.google.com by mina....@gmail.com on 6 Jun 2007 at 2:51

GoogleCodeExporter commented 8 years ago
Fixed in revision 130: The list of include directories is parsed by the code
completion each time it is necessary: On first project compilation and after on 
each
compilation when a file is added or deleted. This parsing is made only after the
compilations because the ui_*.h files are created from UI files only during the
compilation.

Original comment by jlbi...@gmail.com on 6 Jun 2007 at 5:01