App: modernize C++11

* use nullptr
This commit is contained in:
wmayer
2022-03-23 17:29:23 +01:00
parent 882e34f2ce
commit 749361d2f3
67 changed files with 647 additions and 643 deletions

View File

@@ -79,7 +79,7 @@ Property *DynamicProperty::getDynamicPropertyByName(const char* name) const
auto it = index.find(name);
if (it != index.end())
return it->property;
return 0;
return nullptr;
}
std::vector<std::string> DynamicProperty::getDynamicPropertyNames() const
@@ -118,7 +118,7 @@ const char* DynamicProperty::getPropertyGroup(const Property* prop) const
auto it = index.find(const_cast<Property*>(prop));
if(it!=index.end())
return it->group.c_str();
return 0;
return nullptr;
}
const char* DynamicProperty::getPropertyGroup(const char *name) const
@@ -127,7 +127,7 @@ const char* DynamicProperty::getPropertyGroup(const char *name) const
auto it = index.find(name);
if (it != index.end())
return it->group.c_str();
return 0;
return nullptr;
}
const char* DynamicProperty::getPropertyDocumentation(const Property* prop) const
@@ -136,7 +136,7 @@ const char* DynamicProperty::getPropertyDocumentation(const Property* prop) cons
auto it = index.find(const_cast<Property*>(prop));
if(it!=index.end())
return it->doc.c_str();
return 0;
return nullptr;
}
const char* DynamicProperty::getPropertyDocumentation(const char *name) const
@@ -145,7 +145,7 @@ const char* DynamicProperty::getPropertyDocumentation(const char *name) const
auto it = index.find(name);
if (it != index.end())
return it->doc.c_str();
return 0;
return nullptr;
}
Property* DynamicProperty::addDynamicProperty(PropertyContainer &pc, const char* type,
@@ -293,11 +293,11 @@ Property *DynamicProperty::restore(PropertyContainer &pc,
const char *PropName, const char *TypeName, Base::XMLReader &reader)
{
if (!reader.hasAttribute("group"))
return 0;
return nullptr;
short attribute = 0;
bool readonly = false, hidden = false;
const char *group=0, *doc=0, *attr=0, *ro=0, *hide=0;
const char *group=nullptr, *doc=nullptr, *attr=nullptr, *ro=nullptr, *hide=nullptr;
group = reader.getAttribute("group");
if (reader.hasAttribute("doc"))
doc = reader.getAttribute("doc");
@@ -343,5 +343,5 @@ const char *DynamicProperty::getPropertyName(const Property *prop) const
auto it = index.find(const_cast<Property*>(prop));
if(it != index.end())
return it->getName();
return 0;
return nullptr;
}