App: modernize C++: return braced init list

This commit is contained in:
wmayer
2023-08-17 13:15:08 +02:00
committed by wwmayer
parent 59760c723f
commit af8c05c507
34 changed files with 70 additions and 74 deletions

View File

@@ -328,7 +328,7 @@ DynamicProperty::PropData DynamicProperty::getDynamicPropertyData(const Property
auto it = index.find(const_cast<Property*>(prop));
if(it != index.end())
return *it;
return PropData();
return {};
}
bool DynamicProperty::changeDynamicProperty(const Property *prop, const char *group, const char *doc) {