PKGBUILDs/extra/freecad/freecad-vtk9.3.patch

15 lines
631 B
Diff
Raw Normal View History

2023-11-20 13:59:12 +00:00
diff --git a/src/3rdParty/salomesmesh/src/SMDS/SMDS_UnstructuredGrid.cpp b/src/3rdParty/salomesmesh/src/SMDS/SMDS_UnstructuredGrid.cpp
2023-11-23 04:42:34 +00:00
index 7e3de0070a..dc5249158d 100644
2023-11-20 13:59:12 +00:00
--- a/src/3rdParty/salomesmesh/src/SMDS/SMDS_UnstructuredGrid.cpp
+++ b/src/3rdParty/salomesmesh/src/SMDS/SMDS_UnstructuredGrid.cpp
2023-11-23 04:42:34 +00:00
@@ -1026,7 +1026,8 @@ void SMDS_UnstructuredGrid::BuildLinks()
2023-11-20 13:59:12 +00:00
GetLinks()->Allocate(this->GetNumberOfPoints());
GetLinks()->Register(this);
//FIXME: vtk9
- GetLinks()->BuildLinks(this);
2023-11-23 04:42:34 +00:00
+ GetLinks()->SetDataSet(this);
2023-11-20 13:59:12 +00:00
+ GetLinks()->BuildLinks();
GetLinks()->Delete();
#else
this->Links = SMDS_CellLinks::New();