1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-06 09:16:02 +02:00

Fix for Bug 73191: Search not finding all references in a specific example

This commit is contained in:
Bogdan Gheorghe 2004-09-07 15:35:00 +00:00
parent b62a30b9a8
commit 85245150d4
2 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2004-09-07 Bogdan Gheorghe
Fix for Bug 73191: Search not finding all references in a specific example
* src/org/eclipse/cdt/internal/ui/search/CSearchPage.java
2004-09-04 Alain Magloire 2004-09-04 Alain Magloire
Fix for PR 73118 Fix for PR 73118

View file

@ -123,6 +123,10 @@ public class CSearchPage extends DialogPage implements ISearchPage, ICSearchCons
//include those items not represented in the UI //include those items not represented in the UI
searching.add( MACRO ); searching.add( MACRO );
searching.add( TYPEDEF ); searching.add( TYPEDEF );
searching.add( FWD_CLASS );
searching.add( FWD_STRUCT );
searching.add( FWD_UNION );
} else { } else {
searching = data.searchFor; searching = data.searchFor;
} }