]> vaikene.ee Git - evaf/blobdiff - src/libs/Common/registry.cpp
Warning fixes and copyright update.
[evaf] / src / libs / Common / registry.cpp
index 37b47e03e4037208427242734e755b9650bdae9a..c3bc2bef251e08c2d0a96a891d845d50fa0ec1a1 100644 (file)
@@ -3,7 +3,7 @@
  * @brief Common registry implementation
  * @author Enar Vaikene
  *
- * Copyright (c) 2011 Enar Vaikene
+ * Copyright (c) 2011-2019 Enar Vaikene
  *
  * This file is part of the eVaf C++ cross-platform application development framework.
  *
@@ -65,7 +65,7 @@ bool Registry::registerInterface(QString const & name, QObject * obj)
 QObject * Registry::queryInterface(QString const & name) const
 {
     Interfaces::const_iterator it = mInterfaces.constFind(name);
-    return it != mInterfaces.constEnd() ? *it : 0;
+    return it != mInterfaces.constEnd() ? *it : nullptr;
 }
 
 void Registry::interfaceDestroyed(QObject * obj)