SDKTool: Fix compile for Qt5.6

Change-Id: I9154ffbc09187a851c409b2b1ae9d2d8109f1c15
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
Christian Stenger
2016-07-20 10:58:54 +02:00
parent a48acdff52
commit 2281386199
3 changed files with 13 additions and 11 deletions

View File

@@ -54,22 +54,23 @@ const char SUPPORTED_ABIS[] = "ProjectExplorer.GccToolChain.SupportedAbis";
QString AddToolChainOperation::name() const
{
return "addTC";
return QString("addTC");
}
QString AddToolChainOperation::helpText() const
{
return "add a tool chain to Qt Creator";
return QString("add a tool chain to Qt Creator");
}
QString AddToolChainOperation::argumentsHelpText() const
{
return " --id <ID> id of the new tool chain (required).\n"
return QString(
" --id <ID> id of the new tool chain (required).\n"
" --name <NAME> display name of the new tool chain (required).\n"
" --path <PATH> path to the compiler (required).\n"
" --abi <ABI STRING> ABI of the compiler (required).\n"
" --supportedAbis <ABI STRING>,<ABI STRING> list of ABIs supported by the compiler.\n"
" <KEY> <TYPE:VALUE> extra key value pairs\n";
" <KEY> <TYPE:VALUE> extra key value pairs\n");
}
bool AddToolChainOperation::setArguments(const QStringList &args)