App: modernize C++11

* use nullptr
This commit is contained in:
wmayer
2022-03-23 17:29:23 +01:00
parent 4183c45a01
commit 1a20b7f119
67 changed files with 647 additions and 643 deletions

View File

@@ -54,7 +54,7 @@ static std::atomic<int64_t> _PropID;
// Here is the implementation! Description should take place in the header file!
Property::Property()
:father(0), myName(0), _id(++_PropID)
:father(nullptr), myName(nullptr), _id(++_PropID)
{
}
@@ -252,7 +252,7 @@ Property *Property::Copy(void) const
{
// have to be reimplemented by a subclass!
assert(0);
return 0;
return nullptr;
}
void Property::Paste(const Property& /*from*/)