- Timestamp:
- Apr 22, 2019 11:10:20 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIFormEditorWidget.cpp
r78219 r78244 726 726 void UIFormEditorModel::updateGeneration() 727 727 { 728 foreach (UIFormEditorRow *pRow, m_dataList) 728 for (int i = 0; i < m_dataList.size(); ++i) 729 { 730 UIFormEditorRow *pRow = m_dataList.at(i); 729 731 if (pRow->isGenerationChanged()) 732 { 730 733 pRow->updateValueCells(); 734 const QModelIndex changedIndex = index(i, 1); 735 emit dataChanged(changedIndex, changedIndex); 736 } 737 } 731 738 } 732 739
Note:
See TracChangeset
for help on using the changeset viewer.