Review Request: Offer create private/protected members when possible in missingdeclarationaction

Aleix Pol Gonzalez aleixpol at gmail.com
Tue Feb 7 16:52:27 UTC 2012



> On Feb. 2, 2012, 12:27 p.m., Jonas Jacobi wrote:
> > Ping...
> > Would be nice, if somebody could apply it, thx.
> 
> Aleix Pol Gonzalez wrote:
>     Can you provide the formatted patch milian asked you for? Then I'll apply it myself
> 
> Jonas Jacobi wrote:
>     It is attached as a file to this request.

Pushed. Please close this request...


- Aleix


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/102625/#review10281
-----------------------------------------------------------


On Jan. 5, 2012, 10:13 a.m., Jonas Jacobi wrote:
> 
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> http://git.reviewboard.kde.org/r/102625/
> -----------------------------------------------------------
> 
> (Updated Jan. 5, 2012, 10:13 a.m.)
> 
> 
> Review request for KDevelop.
> 
> 
> Description
> -------
> 
> Currently only public member variables can be declared in some contexts.
> This patch checks whether private/protected members would be also accessible from the current context (disregarding friend declarations atm)
> and if so, offer the possibility to create the members.
> e.g.
> 
> class A {
> public:
>   A(int x) : mUndeclared(x) {} // <- declare mUndeclared as private/protected/public member
> };
> 
> class B : public A {
> public:
>   void foo() {
>     A a(2);
>     a.undeclared = 5; // <- declare undeclared as protected/public
>   }
> };
> 
> class X {
> public:
>   void bar() {
>     B b;
>     b.undeclared = 5; // <- declare undeclared as public
>   }
> };
> 
> 
> Diffs
> -----
> 
>   languages/cpp/cppduchain/missingdeclarationassistant.cpp bafc159 
> 
> Diff: http://git.reviewboard.kde.org/r/102625/diff/diff
> 
> 
> Testing
> -------
> 
> I'm currently using it
> 
> 
> Thanks,
> 
> Jonas Jacobi
> 
>

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.kde.org/pipermail/kdevelop-devel/attachments/20120207/cbe94032/attachment.html>


More information about the KDevelop-devel mailing list