Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/core
AgeCommit message (Collapse)AuthorFilesLines
2005-06-28Patch for Devin Steffler.John Camelon2-50/+46
Bug 100104 - NPE during failing KnR declarator which has consumed too much
2005-06-27Fixed Bug 101875 - [Navigation] Offsets wrong if header files do not have a ↵John Camelon2-81/+165
trailing new-line
2005-06-27Fix for 101903: Junit failures for RC1Bogdan Gheorghe2-2/+14
2005-06-27fix bug 100403 qualified names in class member declarationsAndrew Niefer3-29/+47
2005-06-27EPL'ing the CDT.Doug Schaefer130-136/+135
2005-06-27EPL'ing the CDT.Doug Schaefer759-6313/+6484
2005-06-27Partial Fix for 101287Bogdan Gheorghe1-1/+1
2005-06-27Fix for 101344: problem markers are not being removed from header filesVladimir Hirsl3-11/+54
Fixed removing indexer problem markers originally created by indexing header files not included by any source files.
2005-06-27Fix for 92935Bogdan Gheorghe3-4/+46
2005-06-252005-06-25 Alain MagloireAlain Magloire3-29/+75
Fix PR 91069: BinaryRunner search improvements from Chris Wiebe. * model/org/eclipse/cdt/internal/core/model/BinaryRunner.java
2005-06-252005-06-25 Alain MagloireAlain Magloire2-1/+5
Fix PR 98458: extra semicolon in namespace wizard class. * src/org/eclipse/cdt/internal/ui/wizards/classwizard/NewClassCodeGenerator.java
2005-06-252005-06-25 Alain MagloireAlain Magloire2-2/+16
Fix for PR 98788: Templates * src/org/eclipse/cdt/internal/ui/viewsupport/CElementImageProvider.java
2005-06-252005-06-25 Alain MagloireAlain Magloire5-53/+132
PR 98788: Templates * model/org/eclipse/cdt/core/model/tests/CModleElementsTests.java * model/org/eclipse/cdt/core/model/tests/ITemplateTests.java * model/org/eclipse/cdt/core/model/tests/StructureCModelElementsTests.java * model/org/eclipse/cdt/core/model/tests/StructuralTemplateTests.java
2005-06-252005-06-25 Alain MagloireAlain Magloire19-214/+580
Fix PR 98788: Dealing with templates * model/org/eclipse/cdt/core/model/ICElement.java + model/org/eclipse/cdt/core/model/IFunctionTemplate.java + model/org/eclipse/cdt/core/model/IFunctionTemplateDeclaration.java + model/org/eclipse/cdt/core/model/IMethodTemplate.java + model/org/eclipse/cdt/core/model/IMethodTemplateDeclaration.java + model/org/eclipse/cdt/core/model/IStructureTemplate.java + model/org/eclipse/cdt/core/model/IStructureTemplateDeclaration.java * model/org/eclipse/cdt/core/model/ITemplate.java * model/org/eclipse/cdt/internal/core/model/CModelBuilder.java * model/org/eclipse/cdt/internal/core/model/Funtion.java * model/org/eclipse/cdt/internal/core/model/FunctionTemplate.java * model/org/eclipse/cdt/internal/core/model/Method.java * model/org/eclipse/cdt/internal/core/model/MethodTemplate.java + model/org/eclipse/cdt/internal/core/model/MethodTemplateDeclaration.java * model/org/eclipse/cdt/internal/core/model/StructureTemplate.java + model/org/eclipse/cdt/internal/core/model/StructureTemplateDeclaration.java * model/org/eclipse/cdt/internal/core/model/Template.java
2005-06-24changes to help reduce the number of arrays used in resolving bindingsAndrew Niefer6-46/+53
2005-06-24Fix for 101711 : Dependency Tests failing on LinuxBogdan Gheorghe1-1/+1
2005-06-24Patch for Devin Steffler.John Camelon3-18/+27
Fixed Bug 100947 [BaseScanner] empty string for 91086 fix can create a bad key for the CodeReaderCache
2005-06-23Patch for Devin Steffler.John Camelon1-10/+23
FIXED 100858- New C++ Class wizard creates broken code and adds an include to the project to compensate FIXED 101133- [New Class Wizard] appends included paths to the projects path indefinitely
2005-06-23fix ClassCastException: Bug 101269: Traceback indexing QT applicationAndrew Niefer1-3/+2
2005-06-23Turned off the test info provider for finding function matches. This has ↵Doug Schaefer1-1/+2
been killing us trying to test content assist.
2005-06-23fix bug 101384: NPE in parserAndrew Niefer1-1/+3
2005-06-23fix bug 86688 - friend declaration in local classAndrew Niefer2-1/+73
2005-06-23CPL to EPL transistion - license header update for IBMDavid Inglis965-5034/+5555
2005-06-23CPL to EPL transistion - license header update for QNXDavid Inglis536-2785/+3435
2005-06-23EPL'ing the CDT.Doug Schaefer26-95/+380
2005-06-23Added ability to specify which CTags you want the CTags indexer to useBogdan Gheorghe5-26/+244
2005-06-22Fix for PR 93573: "[Indexer] endl references are not added to the DOM index"Vladimir Hirsl7-74/+130
Fixed different encoding of functions references vs. declarations in the index. Applied Devin's patch for PR 101114: "[AST Util] Inconsistent string representation of IType elements" with slight modifications. Modified JUnit tests accordingly.
2005-06-22fix bug 101334:resolvePrefix - unqualified name not found when using ↵Andrew Niefer1-1/+1
namespace directive
2005-06-22fix bug 100415: conversion to void * and qualification conversionsAndrew Niefer2-17/+37
2005-06-22Patch for Devin Steffler.John Camelon2-4/+8
Fixed Bug 99421 [Open Declaration/Definition] [NPE] caused by external file
2005-06-22[77233] Fixed up assist in ambiguous declarator case, I guess...Doug Schaefer1-3/+4
2005-06-22[72403] Added support for EOC in try blocks and catch handler decls.Doug Schaefer1-11/+19
2005-06-22fix bug 84478: declarations inside conditionsAndrew Niefer11-20/+132
2005-06-222005-06-22 Alain MagloireAlain Magloire2-1/+5
Fix PR 99668 from Craig Watson. * src/org/eclipse/cdt/internal/ui/cview/CViewContentProvider.java
2005-06-22Fixed Bug 84478 [C++ Parser] does not support declarations inside while ↵John Camelon9-95/+225
condition
2005-06-222005-06-22 Alain MagloireAlain Magloire2-1/+5
Fix PR 100263 from Devin. * src/org/eclipse/cdt/internal/ui/preferences/PrefrencesMessages.properties
2005-06-21[95766] Added handling of completions in bracketed expressions in C.Doug Schaefer1-1/+10
2005-06-21[98337] Fixed up handling of EOC in while condition.Doug Schaefer1-7/+20
2005-06-21[98339] Fixed assist in case labels.Doug Schaefer1-1/+9
2005-06-21[98346] Added handling of EOC to enumSpecifier.Doug Schaefer1-6/+18
2005-06-21[98336] Added icons for enumerators in the completion proposals.Doug Schaefer1-1/+4
2005-06-21Fix for 100647Bogdan Gheorghe1-3/+3
2005-06-21[98375] Added handling of content assist in condition expressions.Doug Schaefer1-9/+17
2005-06-21[98377] Added handling of assist in struct members for C.Doug Schaefer1-7/+7
2005-06-21[98528] Fixed EOC handling in sizeof and cast expression in C and the cpp ↵Doug Schaefer3-8/+31
style condition.
2005-06-21[98777] Fixed up handling of EOC in do statements.Doug Schaefer1-7/+24
2005-06-21Fix for 100598: DOM Indexer encodes weird things when indexing a CPP file in ↵Vladimir Hirsl3-8/+16
a C project. Fixed correlation between parser's parser language and indexer visitor.
2005-06-21Added support for completion in external files. Also cleaned up the service ↵Doug Schaefer4-49/+77
provider.
2005-06-21fix ClassCastExceptions found with bug 90678Andrew Niefer3-1/+45
2005-06-21Cleaned up Open Declarations Action code.John Camelon1-13/+11

Back to the top