App: modernize C++: use default member init

This commit is contained in:
wmayer
2023-08-23 14:13:11 +02:00
committed by wwmayer
parent 4210ab01e0
commit 1cf1a90a17
39 changed files with 96 additions and 160 deletions

View File

@@ -37,7 +37,7 @@ using namespace App;
PROPERTY_SOURCE(App::VRMLObject, App::GeoFeature)
VRMLObject::VRMLObject() : index(0)
VRMLObject::VRMLObject()
{
ADD_PROPERTY_TYPE(VrmlFile,(nullptr),"",Prop_None,"Included file with the VRML definition");
ADD_PROPERTY_TYPE(Urls,(""),"",static_cast<PropertyType>(Prop_ReadOnly|Prop_Output|Prop_Transient),
@@ -48,8 +48,6 @@ VRMLObject::VRMLObject() : index(0)
Resources.setSize(0);
}
VRMLObject::~VRMLObject() = default;
short VRMLObject::mustExecute() const
{
return 0;