| Summary: | Can't override virtual functions in protected section | ||
|---|---|---|---|
| Product: | [Applications] kdevelop | Reporter: | Nikita Churaev <lamefun.x0r> |
| Component: | Language Support: CPP (old) | Assignee: | kdevelop-bugs-null |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | aleixpol |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | 4.2.0 | ||
| Platform: | Unlisted Binaries | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
Works for me. |
Version: unspecified OS: Linux Let's say that I have a class: //------------------------------- class Application { public: virtual void quit(); protected: virtual bool main(); }; //------------------------------- Then I create derived class: //------------------------------- class Client : public Application { public: // Ctrl+Space here offers me an option to override the function protected: // Ctrl+Space here DOES NOT offer me an option to override the function }; //------------------------------- Reproducible: Always