Details
-
Bug
-
Resolution: Duplicate
-
P2: Important
-
None
-
Qt Creator 1.3.83 (2.0.0-beta)
-
None
-
Windows 7 (64)
Description
In the code snippet below, if I rename Data's member function doSomething the call made from inside main is not updated.
struct Data { void doSomething() { /* ... */ } }; int main(int argc, char *argv[]) { QHash<int, Data> table; //... for (QHash<int, Data>::iterator it = table.begin(); it != table.end(); ++it) { //... it.value().doSomething(); //... } }
Attachments
Issue Links
- relates to
-
QTCREATORBUG-1070 Code Completion fail when using iterator
- Closed