| 61 | } |
| 62 | |
| 63 | void FlowDiffUtils::SelectPrevRow(SListView<TSharedPtr<FDiffSingleResult>>& ListView, const TArray<TSharedPtr<FDiffSingleResult>>& ListViewSource) |
| 64 | { |
| 65 | const int32 CurrentIndex = GetCurrentIndex(ListView, ListViewSource); |
| 66 | const int32 PrevIndex = CurrentIndex - 1; |
| 67 | if (ListViewSource.IsValidIndex(PrevIndex)) |
| 68 | { |
| 69 | ListView.SetSelection(ListViewSource[PrevIndex]); |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | bool FlowDiffUtils::HasNextDifference(const SListView<TSharedPtr<FDiffSingleResult>>& ListView, const TArray<TSharedPtr<FDiffSingleResult>>& ListViewSource) |
| 74 | { |
nothing calls this directly
no test coverage detected