Return Q_NULLPTR instead of 0 when the return type is a pointer.

This commit is contained in:
Felix Geyer 2012-07-23 14:58:57 +02:00
parent fcc936ceff
commit ecea101962
12 changed files with 67 additions and 66 deletions

View file

@ -589,7 +589,7 @@ const Database* Entry::database() const
return m_group->database();
}
else {
return 0;
return Q_NULLPTR;
}
}