| 975 | } |
| 976 | |
| 977 | void CWorldObjectsGenericDialog::OnGenericNext() { |
| 978 | m_current = GetNextObjectID(m_current); |
| 979 | m_lod = 0; |
| 980 | |
| 981 | UpdateDialog(); |
| 982 | } |
| 983 | |
| 984 | void CWorldObjectsGenericDialog::OnGenericPrev() { |
| 985 | m_current = GetPrevObjectID(m_current); |
nothing calls this directly
no test coverage detected