1
0
Fork 0
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:
Doug Schaefer 2017-10-16 12:20:32 -04:00
parent 1054a38b44
commit 5f07698911

View file

@ -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);
}