mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-21 21:52:10 +02:00
Fix Default toolchain name in common build tab.
Change-Id: I5e5ff71556780b05f52a28c9ddcf4537fadeb4f6
This commit is contained in:
parent
1054a38b44
commit
5f07698911
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ public abstract class CommonBuildTab extends AbstractLaunchConfigurationTab {
|
|||
|
||||
tcCombo.removeAll();
|
||||
if (toolchains.length > 0) {
|
||||
tcCombo.add(String.format(LaunchMessages.CommonBuildTab_Default, toolchains[0]));
|
||||
tcCombo.add(String.format(LaunchMessages.CommonBuildTab_Default, toolchains[0].getName()));
|
||||
} else {
|
||||
tcCombo.add(LaunchMessages.CommonBuildTab_NotFound);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue