Prefer nullptr over Q_NULLPTR
This commit is contained in:
parent
218631efce
commit
a1c8ea01d7
1 changed files with 1 additions and 1 deletions
|
@ -200,7 +200,7 @@ Interface::Interface() = default;
|
|||
Interface::Interface(const QXmlStreamAttributes &attributes)
|
||||
: m_name(attributes.value(QStringLiteral("name")).toString())
|
||||
, m_version(attributes.value(QStringLiteral("version")).toUInt())
|
||||
, m_factory(Q_NULLPTR)
|
||||
, m_factory(nullptr)
|
||||
{
|
||||
auto it = s_clientClassNameMapping.constFind(m_name);
|
||||
if (it != s_clientClassNameMapping.constEnd()) {
|
||||
|
|
Loading…
Reference in a new issue