Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
Qt Creator 1.3.83 (2.0.0-beta)
-
Windows 7 (64)
-
59778cafd564c541cf0f59583a2f250ed03aeb79 debe9cc4f717cf0550bb141c716397bbae0ef85f
Description
Consider the struct below:
struct Data { void f(int a); void g(const int a); void h(const int a) const; };
When defining the functions, if I start typing and then accept the automatic completion, this is how they end up.
void Data::f(int a) //... void Data::g(int a) //... void Data::h(int a) //...
So the const(s) were not considered.