Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 9f50784d4c6ab402efa476fc288fd5865ba4e8a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
2004-04-20 David Inglis

	More of the model throws CModeLException. 
	
	* refactor/org/eclipse/cdt/internal/corext/refactoring/rename/RenameElementProcessor.java
	* src/org/eclipse/cdt/internal/ui/CElementImageProvider.java
	* src/org/eclipse/cdt/internal/ui/search/CElementLabels.java
	* src/org/eclipse/cdt/internal/ui/viewsupport/MemberFilter.java
	* src/org/eclipse/cdt/ui/CElementContentProvider.java
	* src/org/eclipse/cdt/ui/CElementLabelProvider.java

2004-04-20 Alain Magloire

	Fix for PR 59081

	* src/org/eclipse/cdt/internal/ui/editor/CDocumentProvider.java
	* src/org/eclipse/cdt/internal/ui/editor/CEditor.java
	* src/org/eclipse/cdt/internal/ui/editor/DocumentAdapter.java
	
2004-04-20 David Inglis

	Enable wraping for build console
	
	* src/org/eclipse/cdt/internal/ui/buildconsole/BuildConsoleViewer.java
	
2004-04-19 Bogdan Gheorghe
	Fix for 58477 - Search UI does not work
	Fix for 59077 - Selection Search does not work
	
	* src/org/eclipse/cdt/internal/ui/search/CSearchContentProvider.java
	* src/org/eclipse/cdt/internal/ui/search/CSearchPage.java
	* src/org/eclipse/cdt/internal/ui/search/CSearchQuery.java
    * src/org/eclipse/cdt/internal/ui/search/CSearchResultCollector.java
	* src/org/eclipse/cdt/internal/ui/search/CSearchResultPage.java
	* src/org/eclipse/cdt/internal/ui/search/CSearchTableContentProvider.java
	* src/org/eclipse/cdt/internal/ui/search/LevelTreeContentProvider.java
	* src/org/eclipse/cdt/internal/ui/search/NewSearchResultCollector.java
	* src/org/eclipse/cdt/internal/ui/search/FindAction.java
	* src/org/eclipse/cdt/internal/ui/search/CSearchResultLabelProvider.java
	
2004-04-19 Alain Magloire

	The Core Model interfaces now is throwing CModelException
	we have to catch them and take appropriate actions.

	* refactor/org/eclipse/cdt/internal/corext/refactorin/rename/RenameElementProcessor.java
	* src/org/eclipse/cdt/internal/ui/BaseCElementContentProvider.java
	* src/org/eclipse/cdt/internal/ui/CWorkbenchAdapter.java
	* src/org/eclipse/cdt/internal/ui/cview/CViewContentProvider.java
	* src/org/eclipse/cdt/internal/ui/dialogs/cpaths/CPathProjectsEntryPage.java
	* src/org/eclipse/cdt/internal/ui/dialogs/cpaths/ExtendedCPathBasePage.java
	* src/org/eclipse/cdt/internal/ui/dialogs/cpaths/IncludesSymbolsTabBlock.java
	* src/org/eclipse/cdt/internal/ui/search/CSearchResult.java
	* src/org/eclipse/cdt/ui/wizards/NewClasWizardPage.java

2004-04-18 Alain Magloire

	First part to move to Eclipse-3.0 new DocumentProvider scheme
	for the CEditor.  Changes were made to the IBufferFactory, it
	is now one class CustomBufferFactory in CUIPlugin.getBufferFactory()

	* plugin.xml
	* src/org/eclipse/cdt/internal/ui/editor/AddIncludeOnSelectionAction.java
	* src/org/eclipse/cdt/internal/ui/editor/CContentOutlinerPage.java
	* src/org/eclipse/cdt/internal/ui/editor/CDocumentProvider.java
	* src/org/eclipse/cdt/internal/ui/editor/CEditor.java
	* src/org/eclipse/cdt/internal/ui/editor/CStorageDocumentProvider.java
	* src/org/eclipse/cdt/internal/ui/editor/CustomBufferFactory.java
	* src/org/eclipse/cdt/internal/ui/editor/DocumenAdapter.java
	* src/org/eclipse/cdt/internal/ui/editor/ITranslationUnitEditorInput.java
	* src/org/eclipse/cdt/internal/ui/editor/OpenIncludeAction.java
	* src/org/eclipse/cdt/internal/ui/editor/WorkingCopyManager.java

	* src/org/eclipse/cdt/internal/ui/text/CTextTools.java

	* src/org/eclipse/cdt/internal/ui/util/EditorUtility.java
	* src/org/eclipse/cdt/internal/ui/util/ExternalEditorInput.java

	* src/org/eclipse/cdt/ui/CUIPlugin.java

	* src/org/eclipse/cdt/ui/wizards/NewClassWizardPage.java

	* src/org/eclipse/cdt/internal/ui/BaseCElementContentProvider.java
	* src/org/eclipse/cdt/internal/ui/CFileElementWorkingCopy.java

	* src/org/eclipse/cdt/internal/ui/codemanipulation/AddIncludeOperation.java
	* src/org/eclipse/cdt/internal/ui/cview/CViewContentProvider.java
	* src/org/eclipse/cdt/internal/ui/cview/IncludRefContainer.java
	
2004-04-16 Hoda Amer
	Fix for bug#44364 : [Content Assist] case sensitivity option
	Fix for bug#53446 : [New Class Wizard] Be able to configure new class wizard to not open source
	
2004-04-16 David Inglis

	Work in Progress - CPath ui stuff
	
	* src/org/eclipse/cdt/internal/ui/dialogs/cpaths/AbstractPathOptionBlock.java
	* src/org/eclipse/cdt/internal/ui/dialogs/cpaths/CPListElement.java
	* src/org/eclipse/cdt/internal/ui/dialogs/cpaths/CPListLabelProvider.java
	* src/org/eclipse/cdt/internal/ui/dialogs/cpaths/CPathContainerDescriptor.java
	* src/org/eclipse/cdt/internal/ui/dialogs/cpaths/CPathContainerSelectionPage.java
	* src/org/eclipse/cdt/internal/ui/dialogs/cpaths/CPathEntryMessages.java
	* src/org/eclipse/cdt/internal/ui/dialogs/cpaths/CPathEntryMessages.properties
	* src/org/eclipse/cdt/internal/ui/dialogs/cpaths/CPathIncludeEntryPage.java
	* src/org/eclipse/cdt/internal/ui/dialogs/cpaths/CPathSymbolEntryPage.java
	* src/org/eclipse/cdt/internal/ui/dialogs/cpaths/ExtendedCPathBasePage.java
	* src/org/eclipse/cdt/internal/ui/dialogs/cpaths/CPListElementFilter.java

2004-04-16 Andrew Niefer
	modify CompletionEngine.completionOnFunctionReference for bug 50807

2004-04-16 Hoda Amer
	Fix for bug#44370 : [Content Assist] function-style macros have arguments
	
2004-04-16 David Inglis
	
	Register our adapter factory though new extension point

	* plugin.xml
	
2004-04-16 David Inglis

	Update properties page binary catagory name.
	
	* src/org/eclipse/cdt/internal/ui/BinaryPropertySource.java
	* src/org/eclipse/cdt/internal/ui/CUIMessages.properties
	* src/org/eclipse/cdt/internal/ui/ICElementPropertyConstants.java

	Fixed cview to not show bin containers when empty
	
	* src/org/eclipse/cdt/internal/ui/cview/CViewContentProvider.java

2004-04-16 Hoda Amer
	Fix for bug#58563 : [RenameRefactoring] renaming #include statements
	Fix for bug#55764 : [Content Assist] trigger needs more then one character per trigger
	
2004-04-15 Alain Magloire

	Added Properties for the Binaries.
	* src/org/eclipse/cdt/internal/ui/BinaryProjectSource.java
	* src/org/eclipse/cdt/internal/ui/CElementAdapterFactory.java
	* src/org/eclipse/cdt/internla/ui/CElementPropertySource.java

	removed unused files
	* src/org/eclipse/cdt/internal/ui/CElementProperties.java

2004-04-15 Hoda Amer
	Fix for bug#58566 : [Refactoring] renaming #define statements 
	Fix for bug#58335 : [Content Assist] Class forward declarations not reported 
	
2004-05-15 David Inglis

	Work in Progress - start of new C Path Container Wizard
	
	* plugin.xml
	* src/org/eclipse/cdt/internal/ui/CPluginImages.java
	* src/org/eclipse/cdt/internal/ui/dialogs/cpaths/AbstractPathOptionBlock.java
	* src/org/eclipse/cdt/internal/ui/dialogs/cpaths/CPathEntryMessages.properties
	* src/org/eclipse/cdt/internal/ui/dialogs/cpaths/CPathIncludeEntryPage.java
	* src/org/eclipse/cdt/internal/ui/dialogs/cpaths/ExtendedCPathBasePage.java
	* src/org/eclipse/cdt/internal/ui/dialogs/cpaths/MultipleFolderSelectionDialog.java
	* src/org/eclipse/cdt/internal/ui/dialogs/cpaths/NewSourceFolderDialog.java
	* src/org/eclipse/cdt/internal/ui/wizards/NewWizardMessages.properties
	* icons/full/wizban/addpath_wiz.gif

2004-04-15 David Inglis

	simple refactor
	
	- refactor/org/eclipse/cdt/internal/ui/refactoring/ListContentProvider.java
	* refactor/org/eclipse/cdt/internal/ui/refactoring/RefactoringSaveHelper.java
	+ src/org/eclipse/cdt/internal/ui/viewsupport/ListContentProvider.java

2004-04-15 Chris Wiebe

	Make some helper functions static for ease of use ...
	and to get rid of some annoying warnings.

	* src/org/eclipse/cdt/ui/CUIPlugin.java

2004-04-15 Mikhail Khodjaiants
	Removed dependencies to 'org.eclipse.debug.core' and 'org.eclipse.debug.ui'.
	* plugin.xml
	* src/org/eclipse/cdt/internal/ui/editor/CMarkerAnnotation.java

2004-04-15 John Camelon
	Partial fix for https://bugs.eclipse.org/bugs/show_bug.cgi?id=57928

2004-04-14 Alain Magloire

	Remove the contribution for header doing this will force
	all C files to have the header icon. Added icon for assembly files.

	* src/org/eclipse/cdt/internal/ui/CElementImageProvider.java
	* plugin.xml

2004-04-14 Andrew Niefer
	updated src/org/eclipse/cdt/internal/ui/compare/SourceElementRequestorAdapter with acceptFriendDeclaration

2004-04-14 Alain Magloire

	Fix PR 58375
	New icons.
	
	* icons/full/clc16/cllapseall.gif
	* icons/full/dlc16/cllapseall.gif
	* icons/full/elc16/cllapseall.gif

2004-04-14 Hoda Amer
	Partial fix for bug#58178 : [Content Assist] No completion on GL_TRUE
	
2004-04-13 Hoda Amer
	Fix for bug#57804: [Refactoring] Constructor and Destructor are not refactored when class is defined inside a namespace
	
2004-04-13 Hoda Amer
	From Chris Wiebe
	This patch makes sure the class wizard works as long as the selection 
	supports IAdaptable. It also prevents the class wizard from attempting 
	to generate new source files without a valid source path.

2004-04-13 Andrew Niefer
	fix src/org/eclipse/cdt/internal/corext/template/default-templates.xml to restore changes lost in
	string externalization (restore for loops to use preincrement) 

2004-04-12 Bogdan Gheorghe
	Added Indexer Timeout field to Work In Progress Preference page
	
	* src/org/eclipse/cdt/internal/ui/preferences/WorkInProgressPreferencePage.java
	
2004-04-12 Hoda Amer
	Fix for bug#57692 : [Content Assist] CompletionEngine::completionOnSingleNameReference() behaviour incorrect

2004-04-12 Alain Magloire
	This patch changes the default filter so an empty string does not show
	any matches. The reason for this is to speed up performance when a lot
	of types are initially visible. Note this makes the behaviour consistent
	with the JDT Open Type.

	* browser/org/eclipse/cdt/internal/ui/browser/opentype//OpentTypeDialog.java
	* browser/org/eclipse/cdt/ui/browser/typeinfo/TypeSelectionDialog.java

2004-04-12 Bogdan Gheorghe
	Added Enumerator, Derived types to search dialog
	
2004-04-12 Hoda Amer
	From Chris Wiebe
	This patch updates the class wizard to use the type cache & type
	selection dialog when choosing a base class.
	It also fixes the base class inclusion problem and 
	ensures the working copies are destroyed once committed [57968].
		
2004-04-11 John Camelon
	Updated CompletionEngine to use shared working copies when parsing include files.
	Updated clients for ISourceElementRequestor.createReader() updates.

2004-04-07 John Camelon
	Updated CompletionEngine to use the extended IASTCompletionNode interface for FUNCTION_REFERENCE.

2004-04-07 David Inglis
	
	Begining of new Include/Symbols UI pages.
	
	* src/org/eclipse/cdt/internal/dialogs/cpaths/*.java
	
	Changes here due to refactor
	
	* src/org/eclipse/cdt/internal/ui/preferences/
	
2004-04-05 Alain Magloire
	From Chris Wiebe
	This patch cleans up the layout of the checkboxes on the Open Type dialog.
 
	* browser/org/eclipse/cdt/ui/browser/typeinfo/TypeSelectionDialog.java

2004-04-06 Alain Magloire

	This patch provides some improvements to the Open Type action, such as
	per-file type caching (much faster now) and extra filtering options in
	the dialog.  The non-ui code has also been isolated and moved to
	org.eclipse.cdt.core.browser.

	* browser/*

2004-04-06 Alain Magloire

	Reorder the sorter.

	* src/org/eclipse/cdt/ui/CElementSorter.java

2004-04-06 John Camelon
	Fix for https://bugs.eclipse.org/bugs/show_bug.cgi?id=51993

2004-04-06 Alain Magloire

	Bug fixes and support for external headers.

	* src/org/eclipse/cdt/internal/ui/BaseCElmentContentProvider.java
	* src/org/eclipse/cdt/internal/ui/util/EditorUtility.java

2004-04-05 Alain Magloire

	Changing the sequence when we shutdown, this will
	help in PR #57128
	In BaseCElementContentProvider do not call 
	BinaryContainer.getBinaries() directly it is a blocking
	operation.

	* src/org/eclipse/cdt/ui/CUIPlugin.java
	* browser/org/eclipse/cdt/ui/browser/typeinfo/AllTypesCache.java
	* src/org/eclipse/cdt/internal/ui/BaseCElementCElementContentProvider.java
	* src/org/eclipse/cdt/internal/ui/CElementImageProvider.java
	* src/org/eclipse/cdt/internal/ui/CPluginImages.java

2004-04-05 Hoda Amer
	Fix for bug#44378 : Content Assist: easy keyboard exit of argument-providing mode
	Fix for bug#56614 : [Content Assist] Global variables do not appear in a global completion list.
	Fix for bug#56634 : Renaming a fcn in class A renames same named function of other classes
	Fix for bug#56646 : Did not get warning when renaming a virtual function 
	
2004-04-03 Alain Magloire

	Draft support for LibraryReference and IncludeReference
	CView has its own ContentProvider.
	WORK IN PROGRESS

	* src/org/eclipse/cdt/internal/ui/BaseCElementContentProvider.java
	* src/org/eclipse/cdt/internal/ui/CPluginImages.java
	* src/org/eclipse/cdt/internal/ui/cview/CView.java
	* src/org/eclipse/cdt/internal/ui/cview/CViewActionGroup.java
	* src/org/eclipse/cdt/internal/ui/cview/CViewContentProvider.java
	* src/org/eclipse/cdt/internal/ui/cview/IncludeRefContainer.java
	* src/org/eclipse/cdt/internal/ui/cview/LibraryRefContainer.java
	* src/org/eclipse/cdt/internal/ui/dialogs/CPListElement.java
	* src/org/eclipse/cdt/internal/ui/dialogs/CPListElementSorter.java
	* src/org/eclipse/cdt/ui/CElementContentProvider.java

2004-04-04 John Camelon
	Fix https://bugs.eclipse.org/bugs/show_bug.cgi?id=43215

2004-04-02 David Inglis

	Support selection of multiple binary parsers.
	
	* plugin.xml
	* src/org/eclipse/cdt/internal/ui/CUIMessages.properties
	* src/org/eclipse/cdt/ui/dialogs/AbstractBinaryParserPage.java
	* src/org/eclipse/cdt/ui/dialogs/AbstractCOptionPage.java
	* src/org/eclipse/cdt/ui/dialogs/BinaryParserBlock.java
	* src/org/eclipse/cdt/ui/dialogs/CygwinPEBinaryParserPage.java
	* src/org/eclipse/cdt/ui/dialogs/GNUElfBinaryParserPage.java

2004-04-02 Alain Magloire

	Add new filter to hide/show non C Projects.

	* src/org/eclipse/cdt/internal/ui/BaseCElementContentProvider.java
	* src/org/eclipse/cdt/internal/ui/filters/NonCProjectsFilter.java
	* plugin.properties
	* plugin.xml

2004-04-01 Alain Magloire

	New set of icons to experiment, from Chris.
	On April first .... ???

	* icons/full/obj16/bin_obj.gif
	* icons/full/obj16/cfolder_obj.gif
	* icons/full/obj16/container_obj.gif
	* icons/full/obj16/output_folder_obj.gif
	* icons/full/obj16/output_obj.gif

	* src/org/eclipse/cdt/internal/ui/CElementImageProvider.java
	* src/org/eclipse/cdt/ui/CSearchResultLableProvider.java

2004-03-31 David Inglis

	removed org.apache.xerces dependency
	
	* src/org/eclipse/cdt/internal/corext/template/TemplateSet.java
	
2004-03-31 David Daoust
	Changed the default value for the preference "LinkToEditor" to be 
	off -- the same as in the JDT.
	* src/org/eclipse/cdt/internal/ui/preferences/CPluginPreferencePage.java

2004-03-31 Bogdan Gheorghe
	Fixed the overview annotations in the Overview bar in the CEditor
	Modified the CEditorPreferencePage to add the Index Marker annotation
	Created a new Preference Page to contain the options for placing markers
	on external files
	Modified CSearchResultCollector to use external marker search prefs
	
	* src/org/eclipse/cdt/internal/ui/editor/CEditor.java
	* src/org/eclipse/cdt/internal/ui/preferences/CEditorPreferencePage.java
	* src/org/eclipse/cdt/internal/ui/preferences/WorkInProgressPreferencePage.java
	* src/org/eclipse/cdt/internal/ui/search/CSearchPage.java
	* src/org/eclipse/cdt/internal/ui/search/CSearchResultCollector.java
	* plugin.xml
	
2004-03-30 Bogdan Gheorghe
	
	Modified the AnnotationModel to solve all annotation refresh problems.
	
	* src/org/eclipse/cdt/internal/ui/editor/CEditor.java
	* src/org/eclipse/cdt/internal/ui/editor/CMarkerAnnotationModel.java
	
	
2004-03-30 Alain Magloire

	New set of icons from Chris Wiebe.

	* icons/full/obj16/enum_obj.gif
	* icons/full/obj16/namespace_obj.gif
	* icons/full/obj16/struct_obj.gif
	* icons/full/obj16/union_obj.gif
	* icons/full/obj16/typedef_obj.gif

	* browser/org/eclipse/cdt/ui/browser/TypeInfoLabelProvider.java

2004-03-30 Alain Magloire

	Fix in the CView was not refreshing.
	* src/org/eclipse/cdt/internal/ui/BaseCElementContentProvider.java

2004-03-30 Alain Magloire

	Change the icons of the Namespace, folks found it
	confusing to reuse the same icons as the Java package.

	* src/org/eclipse/cdt/internal/ui/CElementImageProvider.java
	* src/org/eclipse/cdt/internal/ui/CPluginImages.java
	* src/org/eclipse/cdt/internal/ui/compare/CParserTreeBuilder.java

	* icons/full/obj16/namesapce_obj.gif

2004-03-30 Alain Magloire

	Fix PR 56734

	* src/org/eclipse/cdt/internal/ui/buildconsole/BuildConsolePage.java
	* src/org/eclipse/cdt/internal/ui/ErrorTickAdornmentProvider.java
	* puglin.xml

2004-03-30 Alain Magloire

	Show the import/export menu even when no selection.
	PR 56650
	* src/org/eclipse/cdt/internal/cview/MainActiongroup.java

2004-03-30 Alain Magloire

	Change the filter implementation of the CView to match
	the PackageExplorer functionnality.

	* src/org/eclipse/cdt/internal/ui/filters/ArchiveFilter.java
	* src/org/eclipse/cdt/internal/ui/filters/ExecutableFilter.java
	* src/org/eclipse/cdt/internal/ui/filters/SharedFilter.java
	* src/org/eclipse/cdt/internal/ui/filters/ObjectFilter.java
	* src/org/eclipse/cdt/internal/ui/filters/NamePatternFilter.java
	* src/org/eclipse/cdt/internal/ui/filters/FilterDescriptor.java
	* src/org/eclipse/cdt/internal/ui/filters/CustomFiltersDialog.java

	* src/org/eclipse/cdt/internal/ui/BaseCElementContentProvider.java
	* src/org/eclipse/cdt/internal/uiICHelpContextIds.java

	* src/org/eclipse/cdt/internal/ui/cview/CView.java
	* src/org/eclipse/cdt/internal/ui/cview/CViewActionGroup.java
	* src/org/eclipse/cdt/internal/ui/cview/MainActionGroup.java

	* src/org/eclipse/cdt/ui/actions/CustomFilterActionGroup.java

	Removed Files.
	* src/org/eclipse/cdt/internal/ui/cview/CElementFilters.java
	* src/org/eclipse/cdt/internal/ui/cview/CLibFilter.java
	* src/org/eclipse/cdt/internal/ui/cview/FilterContentProvider.java
	* src/org/eclipse/cdt/internal/ui/cview/ShowLibrariesAction.java

2004-03-29 Alain Magloire

	Put the Problem view as the default instead of Task view.

	* src/org/eclipse/cdt/internal/ui/BaseCElementContentProvier.java
	* src/org/eclipse/cdt/internal/ui/CPerspectiveFactory.java
	* src/org/eclipse/cdt/internal/ui/CWorkbenchAdapter.java
	* src/org/eclipse/cdt/internal/ui;/ErrorTickAdornmentProvider.java

2004-03-28 Bogdan Gheorghe
	Modified CSearchPage to use new CSearchQuery (which uses the new background 
	jobs API)
	
	Modified CSearchResultCollector to use CSearchQuery if present (ie. if invoked 
	from the CSearchPage)
	
	* src/org/eclipse/cdt/internal/ui/search/CSearchResultCollector.java
	* src/org/eclipse/cdt/internal/ui/search/CSearchPage.java
	* src/org/eclipse/cdt/internal/ui/search/CSearchResult.java
	* src/org/eclipse/cdt/internal/ui/search/CSearchQuery.java
	
2004-03-28 Alain Magloire

	Provide a global hook for the action "Show Selected element"

	* src/org/eclipse/cdt/internal/ui/editor/CEditorActionContributor.java

2004-03-26 Alain Magloire

	Keep the order of the sourceroots when sorting the CElements.
	* src/org/eclipse/cdt/ui/CElementSorter.java

2004-03-26 David Inglis

	WORKING PROGRESS new C Path entry UI - Project property page to add/remove/reorder
	src paths, output paths, project references and export/order.
	UI not enabled yet
	no many file to list here.....
	
	
2004-03-25 Hoda Amer
	Added the timeout capability for content assist.
	Added a preference for the user to set up the timeout limit for content assist
	
2004-03-24 Bogdan Gheorghe
	
	Modified CSearchResultCollector to create markers on external matches.
	Modified RenameRefactoringAction to get the openInclude working again (changes approved by Hoda).
	Updated TypeSearchResultCollector to reflect changes made to BasicSearchResultCollector.

	* src/org/eclipse/cdt/internal/ui/search/CSearchResultCollector.java
	* refactor/org/eclipse/cdt/internal/ui/refactoring/actions/RenameRefactoringACtion.java
	* browser/org/eclipse/cdt/ui/browser/typeinfo/AllTypesCache.java
	
2004-03-23 Alain Magloire

	Show the objects on the IOuputEntry path should
	be save in the BinaryContainer.

	* src/org/eclipse/cdt/internal/ui/BaseCElementContentProvider.java
	* src/org/eclpse/cdt/ui/CElementContentProvider.java

2004-03-23 Hoda Amer
	Fix for bug#51303 Content Assist: Completion list remains open after a space is added to a prefix
	Fix for bug#53066 Content Assist: Information displayed after completion on Macro function is not legible.
	Fix for bug#52858 Content Assist: Relevance sorting mixes ordering of structs and classes
	 
2004-03-21 Tanya Wolff

	Externalized stray strings.
	* src/org/eclipse/cdt/internal/corext/template/default-templates.xml
	* src/org/eclipse/cdt/internal/ui/editor/CEditor.java
	* src/org/eclipse/cdt/internal/ui/editor/CEditorMessages.properties
	* src/org/eclipse/cdt/internal/ui/editor/CEditorPreferencePage.java
	* src/org/eclipse/cdt/internal/ui/editor/PreferencesMessages.properties
	
2004-03-21 Alain Magloire

	Show the binaries in the CView even if the parent
	is a resource, this happen for IBinary/IArchive on 
	the IOutputEntry path.
	
	* src/org/eclipse/cdt/internal/ui/BaseCElementContentProvider.java
	* src/org/eclipse/cdt/ui/CElementSorter.java

2004-03-19 David Inglis
	Update changing binary parser to use cdescriptor operation and remove call to deprecated call
	Added check before changes to prevent uneccessary changes of the .cdtproject file.
	* src/org/eclipse/cdt/ui/dialogs/BinaryParserBlock.java
	* src/org/eclipse/cdt/ui/dialogs/CygwinPEBinaryParserPage.java
	* src/org/eclipse/cdt/ui/dialogs/GNUElfBinaryParserPage.java

2004-03-19 Hoda Amer
	Fix for bug#54325 Refactor: Check for name collision
	
2004-03-18 Alain Magloire
	New icons
	* icons/full/obj16/cfolder_obj.gif
	* src/org/eclipse/cdt/internal/ui/BaseCElementContentProvider.java
	* src/org/eclipse/cdt/internal/ui/CElementImageProvider.java

2004-03-18 Tanya Wolff
	Externalized template descriptions,
	Externalized name in plugin.xml,
	Fixed missing resource "Link With Editor".
	* src/org/eclipse/cdt/internal/corext/template/default-templates.xml
	* plugin.xml
	* plugin.properties
	* src/org/eclipse/cdt/internal/ui/cview/CViewMessages.properties
	
2004-03-18 Alain Magloire
	Change in the hierarchy of the core Model:
	ICModel
	   ICProject
	      ISourceRoot
	         IBinary
	         IArchive
	         ITranslatioUnit
	         ICContainer
	The ISourceRoot been added to better separate
	the files.  By default the entire project is the
	SourceRoot.

	* src/org/eclipse/cdt/internal/ui/BaseCElementContentProvider.java
	* src/org/eclipse/cdt/internal/ui/CElementImageProvider.java
	* src/org/eclipse/cdt/internal/ui/CPluginImages.java
	* src/org/eclipse/cdt/ui/CElementContentProvider.java
	
2004-03-17 Tanya Wolff
	Syntax errors in property files
	* CBrowsingMessages.properties
	* TypeHierarchyMessages.properties
	* refactoring.properties
	
2004-03-16 Tanya Wolff
	Externalized strings and marked non-translatable ones.

2004-03-16 Andrew Niefer
	property files for class browser and type hierarchy

2004-03-16 Hoda Amer
	Fix for bug#54324 Refactor: Invoke rename refactoring from editor
	
2004-03-16 Tanya Wolff
	Externalized strings and marked non-translatable ones.

2004-03-15 Hoda Amer
	Fix for [Bug 54323] Refactor: Menu item from outline view
	
2004-03-15 Alain Magloire

	The (Re)Build action were always disable.

	* src/org/eclipse/cdt/internal/ui/cview/BuildGroup.java
	* src/org/eclipse/cdt/internal/ui/cview/CView.java

2004-03-15 Andrew Niefer
	updated internal.ui.compare.SourceElementRequestorAdapter with acceptTemplateParameterReference

2004-03-12 David Inglis

	Implemented new build console using the Eclipse 3 generic console, supporting multiple 
	streams with colorizing.
	
	* plugin.properties
	* plugin.xml
	
	moved to src/org/eclipse/cdt/internal/ui/buildconsole
	
	* src/org/eclipse/cdt/internal/ui/BuildConsole.java
	* src/org/eclipse/cdt/internal/ui/BuildConsoleManager.java

	removed 
	* src/org/eclipse/cdt/internal/ui/buildconsole/BuildConsoleAction.java
	* src/org/eclipse/cdt/internal/ui/buildconsole/BuildConsoleView.java
	* src/org/eclipse/cdt/internal/ui/buildconsole/ClearConsoleAction.java

	modified
	* src/org/eclipse/cdt/internal/ui/CPluginImages.java
	* src/org/eclipse/cdt/internal/ui/CPluginResources.properties
	* src/org/eclipse/cdt/internal/ui/preferences/BuildConsolePreferencePage.java
	* src/org/eclipse/cdt/ui/CUIPlugin.java
	* src/org/eclipse/cdt/ui/IBuildConsoleManager.java

	new
	* src/org/eclipse/cdt/ui/IBuildConsole.java
	* src/org/eclipse/cdt/internal/ui/buildconsole/BuildConsole.java
	* src/org/eclipse/cdt/internal/ui/buildconsole/BuildConsoleDocument.java
	* src/org/eclipse/cdt/internal/ui/buildconsole/BuildConsoleManager.java
	* src/org/eclipse/cdt/internal/ui/buildconsole/BuildConsolePage.java
	* src/org/eclipse/cdt/internal/ui/buildconsole/BuildConsolePartition.java
	* src/org/eclipse/cdt/internal/ui/buildconsole/BuildConsolePartitioner.java
	* src/org/eclipse/cdt/internal/ui/buildconsole/BuildConsoleStream.java
	* src/org/eclipse/cdt/internal/ui/buildconsole/BuildConsoleViewer.java
	* src/org/eclipse/cdt/internal/ui/buildconsole/CBuildConsole.java
	* src/org/eclipse/cdt/internal/ui/buildconsole/ConsoleMessages.java
	* src/org/eclipse/cdt/internal/ui/buildconsole/ConsoleMessages.properties
	* src/org/eclipse/cdt/internal/ui/buildconsole/ConsoleOutputTextStore.java
	* src/org/eclipse/cdt/internal/ui/buildconsole/ScrollLockAction.java

2004-03-11 Hoda Amer
	Added the undo manager for the renaming refactor.
	
2004-03-11 John Camelon
	Updated content assist to not clear() the Scanner's definition map. 

2004-03-09 Alain Magloire

	Added the source folder refactor in the build

	* build.properties

2004-03-09 Hoda Amer
	A new UI tool for renaming model elements. 
	Mainly under the ui/refactor folder.
	This tool relies on search in finding all occurrences 
	of a specific model element.
	and changes the found occurrences in the code to a new name. 
	It could be invoked by a menu item in the C/C++ Packages view. 

2004-03-09 Hoda Amer
	Fix for bug#52188: Content Assist: Disabling the '.' (dot) and '->' triggers has no effect.
	
2004-03-08 Hoda Amer
	Partial fix for bug#52948 : Content Assist: typedef-ed types do not appear in the completion list.

2004-03-08 Bogdan Gheorghe
	
	Minor refactoring to Chris Wiebe's jumbo patch - modified TypeSearchResultCollector.createMatch 
	in AllTypesCache
	
	* browser/org/eclipse/cdt/ui/browser/typeinfo/AllTypesCache.java
	
2004-03-08 Alain Magloire

	Jumbo patch from Chris Wiebe.  Moving the relevant
	typehierarchy/browsing to a specfic src/browser to reduce
	collitions

	* .classpath
	* plugin.xml
	* browser

2004-03-08 Bogdan Gheorghe
	
	Refactored the hyperlink-enabling MouseListener class out of CEditor.
	Fixed Outline view not refreshing bug - reverted to an earlier version of
	WorkingCopyManager.
	Modified CPPCodeScanner to return the entire list of keywords for use with
	the MouseListener hyperlink class.
	
	* src/org/eclipse/cdt/internal/ui/editor/CEditor.java
	* src/org/eclipse/cdt/internal/ui/editor/MouseClickListener.java
	* src/org/eclipse/cdt/internal/ui/editor/WorkingCopyManager.java
	* src/org/eclipse/cdt/internal/ui/opentype/TypeSearchResultCollector.java
	* src/org/eclipse/cdt/internal/ui/text/CPPCodeScanner.java
	
	
2004-03-07 Alain Magloire

	Fix the point size of the icon in the CElementLabelProvider.
	There were too big.

	* src/org/eclipse/cdt/ui/CElementLabelProvider.java

2004-03-05 Alain Magloire

	New icons.
	* icons/full/{c,d,e}lcl16/refresh_nav.gif
	* icons/full/{c,d,e}lcl16/synced.gif

2004-03-05 Alain Magloire

	Support for ToggleEditor link action.
	This action was only in the preference page.
	Now it is also in the toolbar.  It permits the CView
	to track the CEdito selection.

	* src/org/eclipse/cdt/internal/ui/cview/CView.java
	* src/org/eclipse/cdt/internal/ui/cview/CViewAction.java
	* src/org/eclipse/cdt/internal/ui/cview/CViewActionGroup.java
	* src/org/eclipse/cdt/internal/ui/cview/MainActionGroup.java
	* src/org/eclipse/cdt/internal/ui/cview/ToggleLinkingAction.java
	* src/org/eclipse/cdt/internal/ui/preferences/CPluginPreferencePage.java

	
2004-03-04 Bogdan Gheorghe
	Added Hyperlinks to CEditor
	Added Navigation preference page for CEditor
	Modified OpenDeclarationAction to use the selection search mode of the
	parser (using the old search as a backup until selection search improves)
	
	* src/org/eclipse/cdt/internal/ui/editor/CEditor.java
	* src/org/eclipse/cdt/internal/ui/preferences/CEditorPreferncePage.java
	* src/org/eclipse/cdt/internal/ui/search/actions/OpenDeclarationsAction.java
	* src/org/eclipse/cdt/internal/ui/search/actions/FindAction.java
	
2004-03-04 David Inglis

	Fixed https://bugs.eclipse.org/bugs/show_bug.cgi?id=53674
	
	* src/org/eclipse/cdt/ui/dialogs/CygwinPEBinaryParserPage.java
	
2004-03-03 Alain Magloire

	Fix to the CView.  It was opening the file twice.
	This would show when opening a binary.

	* src/org/eclipse/cdt/internal/cview/CView.java
	* src/org/eclipse/cdt/internal/cview/OpenFileGroup.java

2004-03-03 Hoda Amer
	Added a couple of APIs to CUIPlugin + some cleanup
	
2004-03-03 John Camelon
	Cleaned up usage of Enum.getValue() wrt encapsulation of enumerator value.  

2004-03-02 Tanya Wolff

	Fixed missing key for Working Set name and content on 
	new C/C++ Working set dialog. Also added error handling for when 
	properties files are not found. 
	
	All *Messages.java files are affected by the error handling.
	
	The fix for working set is in:
	
	* src/org/eclipse/cdt/internal/ui/workingsets/CElementWorkingSetPage.java


2004-03-02 Alain Magloire

	From Dave Daoust:
	A patch that reduces the number of times that files are parsed (by 1).

	* src/org/eclipse/cdt/internal/ui/ErrorTickAdornmentProvider.java                                                                                                                 

2004-03-01 Hoda Amer
	Removing WorkingCopyManager.getWorkingCop(ITranslationUnit)
	Users should call ITranslationUnit.getSharedWorkingCopy instead.
	  
2004-02-28 Alain Magloire

	PR 51757

	* src/org/eclipse/cdt/internal/ui/cview/PasteAction.java

2004-02-28 Alain Magloire

	Provide an implementation of CView.selectReveal().
	The problem was that ITranslationUnit != IWorkingCopy

	* src/org/eclipse/cdt/internal/ui/cview/CView.java
	* src/org/eclipse/cdt/internal/ui/cview/CViewElementComparer.java
	* src/org/eclipse/cdt/ui/actions/ShowInCViewAction.java

2004-02-28 Alain Magloire

	Fixing a NPE.
	java.lang.NullPointerException
        at org.eclipse.cdt.internal.core.model.Parent.getChildren(Parent.java:47)
        at org.eclipse.cdt.internal.ui.BaseCElementContentProvider.getChildren(BaseCElementContentProvider.java:139)
        at org.eclipse.jface.viewers.AbstractTreeViewer.getRawChildren(AbstractTreeViewer.java:729)

	* src/org/eclipse/cdt/internal/ui/BaseCElementContentProvider.java
	
2004-02-27 Hoda Amer
	Fixed [Bug 53074] The CView to update with each reconcile
	Added the ability for CView to update based on the translation unit working copy
	if one exists.
	
2004-02-26 Andrew Niefer
	externalized strings for all packages

2004-02-26 Alain Magloire

	New icons from Chris Wiebe.

	* icons/full/obj16/c_resource_obj.gif
	* icons/full/obj16/cfolder_obj.gif
	* icons/full/obj16/s_file.obj.gif
	* icons/full/ovr16/c_ovr.gif.gif
	* src/org/eclipse/cdt/internal/ui/CPluginImages.java

2004-02-25 Bogdan Gheorghe
	First go at Selection Search facility. Added Selection Search menus to
	the CView, the CEditor and the COutlineView.
	
	New:
	* src/org/eclipse/cdt/internal/ui/search/actions/DeclarationsSearchGroup.java
	* src/org/eclipse/cdt/internal/ui/search/actions/FindAction.java
	* src/org/eclipse/cdt/internal/ui/search/actions/FindDeclarationsAction.java
	* src/org/eclipse/cdt/internal/ui/search/actions/FindRefsAction.java
	* src/org/eclipse/cdt/internal/ui/search/actions/FindRefsInWorkingSetAction.java
	* src/org/eclipse/cdt/internal/ui/search/actions/ReferencesSearchGroup.java
	* src/org/eclipse/cdt/internal/ui/search/actions/SelctionSearchGroup.java
	* src/org/eclipse/cdt/internal/ui/search/actions/FindDeclarationsInWorkingSetAction.java
	
	Modified:
	* src/org/eclipse/cdt/internal/ui/cview/MainActionGroup.java
	* src/org/eclipse/cdt/internal/ui/editor/CContentOutline.java
	* src/org/eclipse/cdt/internal/ui/editor/CEditor.java
	
	
2004-02-25 John Camelon
	Updates for new ISourceElementRequestor interface updates.  

2004-02-24 Alain Magloire

	New constructor for ShowInCView.

	* src/org/eclipse/cdt/ui/actions/ShowInCView.java

2004-02-20 Alain Magloire

	Fix for PR 52618
	Added the global action handlers for the Property Dialog.

	* src/org/eclipse/cdt/internal/ui/cview/MainActionGroup.java

2003-02-20 Andrew Niefer
	bug 52567
	change the extension IDs for the C Search sorters to avoid conflict with the JDT
	check for nulls in PathNameSorter.compare 

2004-02-18 Alain Magloire

	Remove deprecated Eclipse-2.0 api calls

	* src/org/eclipse/cdt/internal/ui/CElementImageProvider.java
	* src/org/eclipsecdt/internal/ui/editor/WorkingCopyManager.java

2004-02-13 Andrew Niefer
	Updated calls to search to handle InterruptedException

2004-02-16 Alain Magloire

	Use ITextEditor instead of CEditor.
	* src/org/eclipse/cdt/ui/actions/ShowInCViewAction.java

2004-02-15 Alain Magloire

	Special working set for the C/C++ Celements
	new pakage.

	* src/org/eclipse/cdt/internal/ui/workingsets
	* src/org/eclipse/cdt/internal/ui/workingsets/CElementWorkingSetPage.java
	* src/org/eclipse/cdt/internal/ui/workingsets/CElementWorkingSetPageContentProvider.java
	* src/org/eclipse/cdt/internal/ui/workingsets/WorkingSetMessages.java
	* src/org/eclipse/cdt/internal/ui/workingsets/WorkingSetMessages.properties
	
2004-02-15 Alain Magloire

	Reorganize the action of the CView and distribute them
	in different action group.

	New files:
	* src/org/eclipse/cdt/internal/ui/cview/Buildgroup.java
	* src/org/eclipse/cdt/internal/ui/cview/OpenFileGroup.java
	* src/org/eclipse/cdt/internal/ui/cview/OpenProjectGroup.java
	* src/org/eclipse/cdt/internal/ui/cview/SelectionConverter.java
	* src/org/eclipse/cdt/internal/ui/cview/GotoActionGroup.java

2004-02-12 John Camelon
	Updated Content Assist feature to not use IASTCompletionKind.SCOPED_REFERENCE

2004-02-11 Alain Magloire

	* src/org/eclipse/cdt/internal/ui/cview/CView.java
	Register the part listener.

2004-02-11 Alain Magloire

	Reorganize the CView to better deal with the menu actions.

	* src/org/eclipse/cdt/internal/ui/cview/CopyAction.java
	* src/org/eclipse/cdt/internal/ui/cview/PasteAction.java
	* src/org/eclipse/cdt/internal/ui/cview/CViewActionGroup.java
	* src/org/eclipse/cdt/internal/ui/cview/CViewMoveAction.java
	* src/org/eclipse/cdt/internal/ui/cview/CViewRenameAction.java
	* src/org/eclipse/cdt/internal/ui/cview/MainActionGroup.java
	* src/org/eclipse/cdt/internal/ui/cview/RefactorActionGroup.java
	
2004-02-10 Hoda Amer
	Content Assist Preference : Reduced search options to two choices:
	Current file (plus its included files) + Current project (plus its included paths)
	
2004-02-10 Alain Magloire

	Fix to PR 50794
	Rename The CViewSorter to CElementSorter, it is more consistent
	with eclipse i.e. JavaElementSorter, ResourceSorter ....
	Also make it accessible.

	* src/prg/eclipse/cdt/ui/CElementSorter.java

2004-02-06 Hoda Amer
	- Patch for Keith Campbell: Default template file change ( for statement )
	- Patch for Chris Wiebe: Better header file icon
	
2004-02-05 Alain Magloire

	Patch from Chris Wiebe
	Catch the Cancel exception.

	* src/org/eclipse/cdt/internal/ui/opentype/TypeSearchOperation.java

2004-02-05 Alain Magloire
	PR 51221
	Reformat Patch from Bogdan base on Thomas Fletcher original patch
	In a nutshell, it moves the search operation into a runnable which
	can be passed to a progress dialog.

	* src/org/eclipse/cdt/internal/ui/editor/OpenDeclarationsAction.java

2004-02-05 Hoda Amer
	Small prefrence page fix
	
2004-02-05 Alain Magloire

	From Chris Wiebe:
	This patch fixes a problem in the OpenType dialog where it did not show
	types defined in #includes outside the workspace.  If a CElement does
	not exist for a given type, it tries to open an editor at the file and
	line where the match was found.

	* src/org/eclipse/cdt/internal/ui/opentype/OpenTypeAction.java
	* src/org/eclipse/cdt/internal/ui/opentype/TypeSearchMatch.java
	* src/org/eclipse/cdt/internal/ui/opentype/TypeSearchMatchLabelProvider.java
	* src/org/eclpise/cdt/internal/ui/opentype/dialogs/OpenTypeSelectionDialog.java
	* src/org/eclpise/cdt/internal/ui/opentype/dialogs/TypeSelectionDialog.java

2004-02-03 Alain Magloire
	PR 51121
	From Chris Wiebe:
	This patch prevents a null pointer exception in
	org.eclipse.jface.text.reconciler.AbstractReconciler.  Under certain
	conditions (like rapidly closing all editors) the call to getDocument()
	inside initialProcess() can return null which causes an exception.
	
	* src/org/eclipse/cdt/internal/ui/text/CSourceViewerConfiguration.java

2004-02-03 Alain Magloire

	PR 51115
	Patch from Thomas Fletcher to cache the include queries.

	- Only enable the Add Include action when there are actually includes
 	  to add in to the the file.

	* src/org/eclipse/cdt/internal/ui/editor/AddIncludeOnSelectionAction.java

2004-02-02 Alain Magloire

	Dealing with PR 50792, give more flexibility in the behaviour
	of CElementLabelProvider

	* src/org/eclipse/cdt/internal/ui/StandardCElementLabelProvider.java
	* src/org/eclipse/cdt/internal/ui/editor/CEditorErrorTickUpdater.java
	* src/org/eclipse/cdt/ui/CElementLabelProvider.java

2004-01-29 Hoda Amer
	Tuning for the Completion Engine.
	
2004-01-29 Alain Magloire

	PR 50789.  Draft work on this.
	Provide "Show in CView" capability.
	Patch is based on work done by Thomas Fletcher.

	* plugin.properties
	* plugin.xml
	* src/org/eclipse/cdt/internal/ui/editor/CEditor.java
	* src/org/eclipse/cdt/internal/ui/editor/CEditorMessages.properties
	* src/org/eclipse/cdt/internal/ui/editor/ICEditorActionDefinitonsIds.java

	* src/org/eclipse/cdt/ui/actions/ShowInCViewAction.java

2004-01-29 Hoda Amer
	Added handling for CompletionOnFunctionReference()
	
2004-01-28 Alain Magloire

	First draft of the OpenType by Chris Wiebe.

	* icons/full/opentype16/opentype.gif	
	* src/org/eclipse/cdt/internal/ui/opentype/*.java
	* src/org/eclipse/cdt/internal/ui/opentype/dialogs/*.java
 
2004-01-27 John Camelon
	Updated COMPLETION_PARSE clients to use SINGLE_NAME_REFERENCE rather than STATEMENT_START.  

2004-01-27 Hoda Amer
    Added handling for New_Type_Reference completion type
    
2004-01-26 John Camelon
	Updated clients to use new Scanner logging service.

2004-01-26 Hoda Amer
	Content Assist Work: More Tuning of Completion Engine

2004-01-23 Hoda Amer
	Content Assist Work: Tuning of Completion Engine
	
2004-01-21 Hoda Amer
	-Fixed bug#49854 : Enumerator code complete fails when no character provided
	
2004-01-20 Alain Magloire

	Remove the hardcode "objdump" in the EditorUtility.

	* src/org/eclipse/cdt/internal/ui/util/EditorUtility.java
	
2004-01-19 Hoda Amer
	Completed looking up macros with function style.
	
2004-01-16 Hoda Amer
	Added lookupMacros to the CompletionEngine
	
2004-01-16 John Camelon
	IASTNode.LookupException references changed to IASTNode.LookupError.

2004-01-15 Hoda Amer
	Moved Content Assist log to the UI plugin
	
2004-01-15 John Camelon
	Updated references to LookupResult as it was renamed to ILookupResult.  
	Updated references of ParserFactoryException to ParserFactoryError.
	Updated references of ParserNotImplementedException to ParseError. 
	Updated references of CONTEXTUAL_PARSE to COMPLETION_PARSE.  

2004-01-13 Andrew Niefer
	Updated CompletionEngine to catch ASTNotImplementedException from IASTNode.lookup

2004-01-13 John Camelon
	Updated CompletionEngine to handle IASTCompletionKind.CompletionKind.STATEMENT_START

2004-01-08 Hoda Amer
	Added Content assist log cpabilities
	
2004-01-07 Alain Magloire

	Fix for bug 49595
	The error parser order were not save correctly.

	* src/org/eclipse/cdt/ui/dialogs/AbstractErrorParserBlock.java

Back to the top