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:
@@ -466,7 +466,7 @@ WatchModel::WatchModel(WatchHandler *handler, DebuggerEngine *engine)
|
||||
|
||||
m_contentsValid = true;
|
||||
|
||||
setHeader({ tr("Name"), tr("Value"), tr("Type") });
|
||||
setHeader({tr("Name"), tr("Value"), tr("Type")});
|
||||
m_localsRoot = new WatchItem;
|
||||
m_localsRoot->iname = "local";
|
||||
m_localsRoot->name = tr("Locals");
|
||||
@@ -2070,7 +2070,7 @@ void WatchHandler::notifyUpdateStarted(const UpdateParameters &updateParameters)
|
||||
{
|
||||
QStringList inames = updateParameters.partialVariables();
|
||||
if (inames.isEmpty())
|
||||
inames = QStringList({ "local", "return" });
|
||||
inames = QStringList({"local", "return"});
|
||||
|
||||
auto marker = [](WatchItem *item) { item->outdated = true; };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user