forked from qt-creator/qt-creator
Remove spaces in initializer lists
Format initializer lists code style like. Change-Id: Ib82c235e4ba7dc75ee96a7abc0c47eff7b0a9013 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -35,9 +35,9 @@ namespace ProjectExplorer
|
||||
|
||||
static QIcon taskTypeIcon(Task::TaskType t)
|
||||
{
|
||||
static QIcon icons[3] = { QIcon(),
|
||||
Utils::Icons::CRITICAL.icon(),
|
||||
Utils::Icons::WARNING.icon()};
|
||||
static QIcon icons[3] = {QIcon(),
|
||||
Utils::Icons::CRITICAL.icon(),
|
||||
Utils::Icons::WARNING.icon()};
|
||||
|
||||
if (t < 0 || t > 2)
|
||||
t = Task::Unknown;
|
||||
|
||||
Reference in New Issue
Block a user