summaryrefslogtreecommitdiffstats
path: root/src/plugins/sceneparsers/assimp/assimphelpers.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/sceneparsers/assimp/assimphelpers.cpp')
-rw-r--r--src/plugins/sceneparsers/assimp/assimphelpers.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/sceneparsers/assimp/assimphelpers.cpp b/src/plugins/sceneparsers/assimp/assimphelpers.cpp
index f07b770c0..a8d935216 100644
--- a/src/plugins/sceneparsers/assimp/assimphelpers.cpp
+++ b/src/plugins/sceneparsers/assimp/assimphelpers.cpp
@@ -65,7 +65,7 @@ AssimpIOStream::AssimpIOStream(QIODevice *device) :
Assimp::IOStream(),
m_device(device)
{
- Q_ASSERT(m_device != Q_NULLPTR);
+ Q_ASSERT(m_device != nullptr);
}
/*!
@@ -213,7 +213,7 @@ Assimp::IOStream *AssimpIOSystem::Open(const char *pFile, const char *pMode)
if (file->open(openMode))
return new AssimpIOStream(file.take());
- return Q_NULLPTR;
+ return nullptr;
}
/*!