| 166 | void OnCloseAssetEditor(UObject* Asset, const EAssetEditorCloseReason CloseReason); |
| 167 | |
| 168 | struct FDiffControl |
| 169 | { |
| 170 | FDiffControl() |
| 171 | : Widget() |
| 172 | , DiffControl(nullptr) |
| 173 | { |
| 174 | } |
| 175 | |
| 176 | TSharedPtr<SWidget> Widget; |
| 177 | TSharedPtr<class IDiffControl> DiffControl; |
| 178 | }; |
| 179 | |
| 180 | FDiffControl GenerateDetailsPanel(); |
| 181 | FDiffControl GenerateGraphPanel(); |
nothing calls this directly
no outgoing calls
no test coverage detected