mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
2005-04-28 Alain Magloire
Patch from Devlin Steffler FIXED 84606- CDT needs to take advantage of background refresh of projects * src/org/eclipse/cdt/core/CCorePlugin.java
This commit is contained in:
parent
b1de8f55f5
commit
10b6e03e06
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-04-28 Alain Magloire
|
||||
Patch from Devlin Steffler
|
||||
FIXED 84606- CDT needs to take advantage of background refresh of projects
|
||||
* src/org/eclipse/cdt/core/CCorePlugin.java
|
||||
|
||||
2005-04-21 Vladimir Hirsl
|
||||
Fix for PR 91964: Dom Indexer misses give a friend declaration for forward decls
|
||||
Fixed detection of friend class/struct declaration.
|
||||
|
|
|
@ -42,6 +42,7 @@ import org.eclipse.cdt.internal.core.search.matching.MatchLocator;
|
|||
import org.eclipse.cdt.internal.core.search.processing.JobManager;
|
||||
import org.eclipse.core.resources.IProject;
|
||||
import org.eclipse.core.resources.IProjectDescription;
|
||||
import org.eclipse.core.resources.IResource;
|
||||
import org.eclipse.core.resources.IWorkspace;
|
||||
import org.eclipse.core.resources.IWorkspaceRunnable;
|
||||
import org.eclipse.core.resources.ResourcesPlugin;
|
||||
|
@ -689,7 +690,7 @@ public class CCorePlugin extends Plugin {
|
|||
}
|
||||
|
||||
// Open first.
|
||||
projectHandle.open(new SubProgressMonitor(monitor, 1));
|
||||
projectHandle.open(IResource.BACKGROUND_REFRESH, new SubProgressMonitor(monitor, 1));
|
||||
|
||||
mapCProjectOwner(projectHandle, projectID, false);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue