aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2/tests/libsample/blackbox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken2/tests/libsample/blackbox.cpp')
-rw-r--r--sources/shiboken2/tests/libsample/blackbox.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/sources/shiboken2/tests/libsample/blackbox.cpp b/sources/shiboken2/tests/libsample/blackbox.cpp
index f3dd57e97..0546ba7c2 100644
--- a/sources/shiboken2/tests/libsample/blackbox.cpp
+++ b/sources/shiboken2/tests/libsample/blackbox.cpp
@@ -49,7 +49,7 @@ BlackBox::keepObjectType(ObjectType* object)
m_ticket++;
std::pair<int, ObjectType*> item(m_ticket, object);
m_objects.insert(item);
- object->setParent(0);
+ object->setParent(nullptr);
return m_ticket;
}
@@ -63,7 +63,7 @@ BlackBox::retrieveObjectType(int ticket)
m_objects.erase(it);
return second;
}
- return 0;
+ return nullptr;
}
void
@@ -93,7 +93,7 @@ BlackBox::retrievePoint(int ticket)
m_points.erase(it);
return second;
}
- return 0;
+ return nullptr;
}
void