Correct case for translations of "MinGW"

Reviewed-by: Oswald Buddenhagen
This commit is contained in:
Robert Loehning
2009-11-05 14:05:21 +01:00
parent eaa2c10a25
commit 2dfa6e948e
10 changed files with 15 additions and 15 deletions

View File

@@ -114,7 +114,7 @@ QString ToolChain::toolChainName(ToolChainType tc)
case LinuxICC:
return QCoreApplication::translate("ToolChain", "Intel C++ Compiler (Linux)");
case MinGW:
return QCoreApplication::translate("ToolChain", "MinGW");
return QString::fromLatin1("MinGW");
case MSVC:
return QCoreApplication::translate("ToolChain", "Microsoft Visual C++");
case WINCE: