Summary: | Code completion should offer variable first | ||
---|---|---|---|
Product: | [Applications] kdevelop | Reporter: | Ian H <master.haber> |
Component: | Language Support: CPP (Clang-based) | Assignee: | kdevelop-bugs-null |
Status: | CONFIRMED --- | ||
Severity: | normal | ||
Priority: | NOR | ||
Version First Reported In: | 5.0.3 | ||
Target Milestone: | --- | ||
Platform: | Other | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Ian H
2016-12-29 19:26:47 UTC
after offering the variable, it should probably proceed based on most likely by type of assign instead of by alphabetical order. QVariant data; QVariantList dataList=data.toList(); in this case, toList() should show up above toLine() because it makes more sense to assign QVariantList to QVariantList than QLine to QVariantList(this would even lead to a compile error) Makes sense. |