| 68 | } |
| 69 | |
| 70 | void FFlowObjectDiff::DiffProperties(TArray<FSingleObjectDiffEntry>& OutPropertyDiffsArray) const |
| 71 | { |
| 72 | if (OldDetailsView.IsValid() && NewDetailsView.IsValid()) |
| 73 | { |
| 74 | static constexpr bool bSortByDisplayOrder = true; |
| 75 | OldDetailsView->DiffAgainst(*NewDetailsView.Get(), OutPropertyDiffsArray, bSortByDisplayOrder); |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | void FFlowObjectDiff::OnSelectDiff(const FSingleObjectDiffEntry& Property) const |
| 80 | { |
no test coverage detected