summaryrefslogtreecommitdiffstats
path: root/src/input/frontend/qinputchord.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/frontend/qinputchord.cpp')
-rw-r--r--src/input/frontend/qinputchord.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/frontend/qinputchord.cpp b/src/input/frontend/qinputchord.cpp
index 8f72049f8..b33e202c4 100644
--- a/src/input/frontend/qinputchord.cpp
+++ b/src/input/frontend/qinputchord.cpp
@@ -150,7 +150,7 @@ void QInputChord::addChord(QAbstractActionInput *input)
if (!input->parent())
input->setParent(this);
- if (d->m_changeArbiter != Q_NULLPTR) {
+ if (d->m_changeArbiter != nullptr) {
const auto change = Qt3DCore::QNodeAddedPropertyChangePtr::create(id(), input);
change->setPropertyName("chord");
d->notifyObservers(change);
@@ -168,7 +168,7 @@ void QInputChord::removeChord(QAbstractActionInput *input)
Q_D(QInputChord);
if (d->m_chords.contains(input)) {
- if (d->m_changeArbiter != Q_NULLPTR) {
+ if (d->m_changeArbiter != nullptr) {
const auto change = Qt3DCore::QNodeRemovedPropertyChangePtr::create(id(), input);
change->setPropertyName("chord");
d->notifyObservers(change);