Details
-
Sub-task
-
Resolution: Done
-
P2: Important
-
None
Description
This problem is present in the Qt Creator since the start of the project.
I think I can describe this in a few examples. The code completion on the QStringList works, but when you access an item in this list, e.g. stringList.at(0), the code completion on the selected item does not work.
If I remember correctly QStringList inherits QList<> template and I think that this QList<> template does not know which objects are in the list or at least the code completion does not know ths - the pop-up on the at() function shows that it is of type "T". This is weird since this works without a problem if you work directly with QList<>, e.g. QList<QString>.
This should be a known problem since it is present since the start of the project.
I can attach some screenshots tomorow when I get to the office.