Part: modernize C++11

* use nullptr
This commit is contained in:
wmayer
2022-03-23 19:06:48 +01:00
parent a057e5486d
commit 6d2d45ceb7
155 changed files with 1504 additions and 1504 deletions

View File

@@ -99,15 +99,15 @@ PROPERTY_SOURCE(PartGui::ViewProviderPartReference, Gui::ViewProviderGeometryObj
// Construction/Destruction
ViewProviderPartReference::ViewProviderPartReference()
: EdgeRoot(0)
, FaceRoot(0)
, VertexRoot(0)
, pcLineMaterial(0)
, pcPointMaterial(0)
, pcLineStyle(0)
, pcPointStyle(0)
, pcControlPoints(0)
, pShapeHints(0)
: EdgeRoot(nullptr)
, FaceRoot(nullptr)
, VertexRoot(nullptr)
, pcLineMaterial(nullptr)
, pcPointMaterial(nullptr)
, pcLineStyle(nullptr)
, pcPointStyle(nullptr)
, pcControlPoints(nullptr)
, pShapeHints(nullptr)
, meshDeviation(0.01f)
, noPerVertexNormals(true)
, qualityNormals(false)