Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] Applying patch for bug 204758, 234786 and 234791.

I will commit the patches provided by Guido Zgraggen and Lukas Felber
for the bugs listed in the subject.

The patch adresses issues with the refactorings (comment handling in
rewriter, 
getters and setters, implement method). The changes are limited to the
packages:

org.eclipse.cdt.internal.core.dom.rewrite.*
org.eclipse.cdt.internal.ui.refactoring.*

Markus.

> -----Original Message-----
> From: cdt-dev-bounces@xxxxxxxxxxx 
> [mailto:cdt-dev-bounces@xxxxxxxxxxx] On Behalf Of Schorn, Markus
> Sent: Friday, May 30, 2008 10:01 AM
> To: CDT General developers list.
> Subject: [cdt-dev] Committing fix for bug 204758
> Importance: Low
> 
> Hi,
> I am about to commit a fix for
> https://bugs.eclipse.org/bugs/show_bug.cgi?id=204758.
>  
> The issue:
> ==========
> PDOMCParameter differently to PDOMCPPParameter unwinds 
> typedefs before storing the type of the parameter. This leads 
> to anonymous types being proposed during content assist.
>  
> The fix:
> ========
> As a fix I remove the following 2 lines in the constructor of
> PDOMCParameter:
>    while(type instanceof ITypedef)
>       type = ((ITypedef)type).getType();
> 
> 
> Markus.
> _______________________________________________
> cdt-dev mailing list
> cdt-dev@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/cdt-dev
> 


Back to the top