forked from qt-creator/qt-creator
Projectexplorer: Modernize codebase
Change-Id: I4793b58aa77bcd46af99f8b843c0f7439cdc9269 Reviewed-by: Tim Jenssen <tim.jenssen@theqtcompany.com> Reviewed-by: Vikas Pachdha <vikas.pachdha@theqtcompany.com>
This commit is contained in:
@@ -62,9 +62,9 @@ public:
|
||||
}
|
||||
|
||||
QByteArray m_id;
|
||||
mutable QString m_displayName;
|
||||
Core::Id m_typeId;
|
||||
Detection m_detection;
|
||||
mutable QString m_displayName;
|
||||
};
|
||||
|
||||
} // namespace Internal
|
||||
@@ -247,7 +247,7 @@ bool ToolChainFactory::canCreate()
|
||||
|
||||
ToolChain *ToolChainFactory::create()
|
||||
{
|
||||
return 0;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
bool ToolChainFactory::canRestore(const QVariantMap &)
|
||||
@@ -257,7 +257,7 @@ bool ToolChainFactory::canRestore(const QVariantMap &)
|
||||
|
||||
ToolChain *ToolChainFactory::restore(const QVariantMap &)
|
||||
{
|
||||
return 0;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
static QPair<QString, QString> rawIdData(const QVariantMap &data)
|
||||
|
||||
Reference in New Issue
Block a user