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?)
Came here to formulate exactly this, would help very much.
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")
Imo it should be "Override Pure Virtual" and "Override Virtual"
or even "Implement Pure Virtual" and "Override Virtual"