Changeset 104519 in vbox
- Timestamp:
- May 6, 2024 1:40:59 PM (12 months ago)
- svn:sync-xref-src-repo-rev:
- 163043
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationRuntime.cpp
r104518 r104519 303 303 { 304 304 QITableWidgetItem *pItem = static_cast<QITableWidgetItem*>(item(i, 1)); 305 if (pItem && pItem-> type() == InfoRow_Resolution)305 if (pItem && pItem->data(Qt::UserRole + 1) == InfoRow_Resolution) 306 306 removeRow(i); 307 307 } … … 502 502 if (!pItem) 503 503 continue; 504 if (pItem-> type() != enmLine)504 if (pItem->data(Qt::UserRole + 1) != enmLine) 505 505 pItem = 0; 506 506 }
Note:
See TracChangeset
for help on using the changeset viewer.