Details
-
Suggestion
-
Resolution: Fixed
-
Not Evaluated
-
Qt Creator 4.5.1
-
None
Description
Suppose I have two overloaded methods within a class:
class MyClass { //...other stuff QString getText() const; QString getText(const SomeOtherClass& parameter) const; //...other stuff };
When using MyClass, and typing...
MyClass mc; mc.getText
...and triggering autocomplete at this point, the result is:
MyClass mc; mc.getText();
At this point, autocomplete hides that an overload with parameter exists.
I would expect that autocomplete gives me the choice which overload to use at this point.