mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 09:46:02 +02:00
getCRoot() is now getCModel()
This commit is contained in:
parent
15246be53a
commit
cac6e16c0f
1 changed files with 2 additions and 2 deletions
|
@ -264,7 +264,7 @@ public class CMainTab extends CLaunchConfigurationTab {
|
|||
**/
|
||||
|
||||
protected ICProject[] getCProjects() {
|
||||
ICProject cproject[] = CoreModel.getDefault().getCRoot().getCProjects();
|
||||
ICProject cproject[] = CoreModel.getDefault().getCModel().getCProjects();
|
||||
ArrayList list = new ArrayList(cproject.length);
|
||||
boolean isNative = filterPlatform.equals(BootLoader.getOS());
|
||||
|
||||
|
@ -293,7 +293,7 @@ public class CMainTab extends CLaunchConfigurationTab {
|
|||
if (projectName.length() < 1) {
|
||||
return null;
|
||||
}
|
||||
return CoreModel.getDefault().getCRoot().getCProject(projectName);
|
||||
return CoreModel.getDefault().getCModel().getCProject(projectName);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue