DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ RefreshAllSlots()

void AttachmentCategoriesRow::RefreshAllSlots ( )
inlineprotected

См. определение в файле AttachmentCategoriesRow.c строка 637

638 {
639 m_Refreshing = true;
640 int row_count = m_AttachmentsContainer.GetRowCount();
641 int row;
642 for (row = 0; row < row_count; row++)
643 {
644 int col_count = m_AttachmentsContainer.GetColumnCountForRow(row);
645 int col;
646 for (col = 0; col < col_count; col++)
647 {
648 RefreshSlot(row, col, -1, "");
649 }
650 }
651 m_Refreshing = false;
652 }
ref AttachmentsGroupContainer m_AttachmentsContainer
Определения AttachmentCategoriesRow.c:7
void RefreshSlot(int row, int column, int slot_id, string slot_name)
Определения AttachmentCategoriesRow.c:655

Перекрестные ссылки m_AttachmentsContainer, m_Refreshing и RefreshSlot().

Используется в Init(), Refresh() и UpdateInterval().