- Timestamp:
- Jan 10, 2025 4:11:12 PM (10 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationConfiguration.cpp
r106061 r107679 280 280 if (!pItem) 281 281 continue; 282 QString strColumn1 = pItem ? pItem->text() : QString();282 const QString strColumn1 = pItem->text(); 283 283 pItem = static_cast<QITableWidgetItem*>(m_pTableWidget->item(i, 2)); 284 284 if (!pItem) 285 285 continue; 286 QString strColumn2 = pItem ? pItem->text() : QString();286 const QString strColumn2 = pItem->text(); 287 287 if (strColumn2.isEmpty()) 288 288 data << strColumn1;
Note:
See TracChangeset
for help on using the changeset viewer.