diff options
author | Daniel Molkentin <daniel.molkentin@nokia.com> | 2009-08-13 14:07:27 +0200 |
---|---|---|
committer | Daniel Molkentin <daniel.molkentin@nokia.com> | 2009-08-13 14:07:27 +0200 |
commit | 77f191e8677b28bb84c8d0d0fac8735b23c15e24 (patch) | |
tree | 3eb08f818682b1e13600c2c681efed6d7942d1bc | |
parent | 036f94b0384320191218af2cdc4651d3f60abf7f (diff) | |
download | qt-creator-77f191e8677b28bb84c8d0d0fac8735b23c15e24.tar.gz |
Improve wording of tool chains.
-rw-r--r-- | src/plugins/projectexplorer/toolchain.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/toolchain.cpp b/src/plugins/projectexplorer/toolchain.cpp index 55fc233c6f..f7377aad6b 100644 --- a/src/plugins/projectexplorer/toolchain.cpp +++ b/src/plugins/projectexplorer/toolchain.cpp @@ -111,11 +111,11 @@ QString ToolChain::toolChainName(ToolChainType tc) case GCC: return QCoreApplication::translate("ToolChain", "GCC"); case LinuxICC: - return QCoreApplication::translate("ToolChain", "Linux ICC"); + return QCoreApplication::translate("ToolChain", "Intel C++ Compiler (Linux)"); case MinGW: return QCoreApplication::translate("ToolChain", "MinGW"); case MSVC: - return QCoreApplication::translate("ToolChain", "Microsoft Visual Studio"); + return QCoreApplication::translate("ToolChain", "Microsoft Visual C++"); case WINCE: return QCoreApplication::translate("ToolChain", "Windows CE"); case OTHER: |