-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
None
-
Qt Creator 2.4.0
-
None
I reported this issue before as a comment on QTCREATORBUG-2949, but apparently this is a different issue, so I created a new issue.
QtCreator fails to complete code for pointer typedef variables. The following code snippet illustrates the problem:
struct Foo { int bar; }; typedef struct Foo *pFoo; void main() { pFoo f; f-> // completion fails }