-
Bug
-
Resolution: Done
-
P2: Important
-
Qt Creator 3.0.0-rc1
-
None
-
1113097c377cf0ce79574f12aacda174e4c55e88
test.h:
struct Foo { virtual void foo(const char *a, const char *b) {} }; struct Bar : Foo { public: void foo(const char *a, const char *b) { } };
test.cpp:
#include "test.h" void test(const char *a, const char *b) { Foo *f = 0; f->foo(a, b); // F2 here, choose Foo::foo }
- virtual1.png: Pressing F2 then choosing the first entry
- virtual2.png: Jumps to the correct function, but pops another proposal widget
- virtual3.png: Pressing Enter pops the function hint.