Mesh: modernize C++11

* remove redundant void-arg
* use nullptr
* replace deprecated headers
This commit is contained in:
wmayer
2022-01-26 18:05:02 +01:00
parent 213311524e
commit 59e605e6b8
88 changed files with 651 additions and 651 deletions

View File

@@ -41,13 +41,13 @@ using namespace MeshCore;
PROPERTY_SOURCE(Mesh::Transform, Mesh::Feature)
Transform::Transform(void)
Transform::Transform()
{
ADD_PROPERTY(Source ,(0));
ADD_PROPERTY(Source ,(nullptr));
ADD_PROPERTY(Position,(Matrix4D()));
}
App::DocumentObjectExecReturn *Transform::execute(void)
App::DocumentObjectExecReturn *Transform::execute()
{
/*
Feature *pcFirst = dynamic_cast<Feature*>(Source.getValue());