forked from qt-creator/qt-creator
SDKtool: Consistently use const char X[] for constants in .cpp files
Change-Id: Iee70ddb526a1751120be40bfd8d2ae01b27b80b8 Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
@@ -40,19 +40,19 @@
|
||||
#include <iostream>
|
||||
|
||||
// ToolChain file stuff:
|
||||
static char COUNT[] = "ToolChain.Count";
|
||||
static char PREFIX[] = "ToolChain.";
|
||||
static char VERSION[] = "Version";
|
||||
const char COUNT[] = "ToolChain.Count";
|
||||
const char PREFIX[] = "ToolChain.";
|
||||
const char VERSION[] = "Version";
|
||||
|
||||
// ToolChain:
|
||||
static char ID[] = "ProjectExplorer.ToolChain.Id";
|
||||
static char DISPLAYNAME[] = "ProjectExplorer.ToolChain.DisplayName";
|
||||
static char AUTODETECTED[] = "ProjectExplorer.ToolChain.Autodetect";
|
||||
const char ID[] = "ProjectExplorer.ToolChain.Id";
|
||||
const char DISPLAYNAME[] = "ProjectExplorer.ToolChain.DisplayName";
|
||||
const char AUTODETECTED[] = "ProjectExplorer.ToolChain.Autodetect";
|
||||
|
||||
// GCC ToolChain:
|
||||
static char PATH[] = "ProjectExplorer.GccToolChain.Path";
|
||||
static char TARGET_ABI[] = "ProjectExplorer.GccToolChain.TargetAbi";
|
||||
static char SUPPORTED_ABIS[] = "ProjectExplorer.GccToolChain.SupportedAbis";
|
||||
const char PATH[] = "ProjectExplorer.GccToolChain.Path";
|
||||
const char TARGET_ABI[] = "ProjectExplorer.GccToolChain.TargetAbi";
|
||||
const char SUPPORTED_ABIS[] = "ProjectExplorer.GccToolChain.SupportedAbis";
|
||||
|
||||
QString AddToolChainOperation::name() const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user