Bug 378089 - Code completion inside a class should offer to override pure virtuals first
Summary: Code completion inside a class should offer to override pure virtuals first
Status: RESOLVED FIXED
Alias: None
Product: kdevelop
Classification: Applications
Component: Language Support: CPP (Clang-based) (show other bugs)
Version: 5.1.0
Platform: Compiled Sources Linux
: NOR wishlist
Target Milestone: ---
Assignee: kdevelop-bugs-null
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-03-26 05:56 UTC by Nicolás Alvarez
Modified: 2017-06-29 14:15 UTC (History)
2 users (show)

See Also:
Latest Commit:
Version Fixed In: 5.2.0
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Nicolás Alvarez 2017-03-26 05:56:50 UTC
If I do code completion inside a class, it offers to override virtual functions in the parent class. However, the functions are simply ordered alphabetically. I think pure virtual functions should be offered first, since overriding them is *necessary* for the current class to stop being abstract.

Example:

class Base {
public:
    virtual void aaa() {}
    virtual void bbb() {}
    virtual void ccc() = 0;
};

class Derived: public Base {
public:
    // code completion here shows aaa, bbb, ccc
    // I think it should show ccc first
};

(btw, could somebody check what was the behavior in oldcpp, eg. in KDevelop 4?)
Comment 1 Martin Bednar 2017-04-14 16:33:46 UTC
Came here to formulate exactly this, would help very much.
Comment 2 Friedrich W. H. Kossebau 2017-06-29 11:48:04 UTC
Feature has been added by https://phabricator.kde.org/D6355

Some feedback on that please, Nicolás & Martin:
as can be seen on http://i.imgur.com/fRbmKa2.png the pure virtual methods are in an own section at the top called "Abstract Override". Which is not perfect C++ lingo. What title for the section would you propose?
(mine would be "Pure Virtual Override")
Comment 3 Milian Wolff 2017-06-29 14:15:15 UTC
Imo it should be "Override Pure Virtual" and "Override Virtual"
Comment 4 Milian Wolff 2017-06-29 14:15:38 UTC
or even "Implement Pure Virtual" and "Override Virtual"