Changeset 80345 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Aug 19, 2019 2:33:00 PM (5 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime/information
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationConfiguration.cpp
r80344 r80345 66 66 { 67 67 m_strGeneralTitle = QApplication::translate("UIVMInformationDialog", "General"); 68 m_strGeneralName = QApplication::translate("UIVMInformationDialog", "Name");69 m_strGeneralOSType = QApplication::translate("UIVMInformationDialog", "Operating System");70 68 m_strSystemTitle = QApplication::translate("UIVMInformationDialog", "System"); 71 m_str Error = QApplication::translate("UIVMInformationDialog", "Not Detected");69 m_strDisplayTitle = QApplication::translate("UIVMInformationDialog", "Display"); 72 70 } 73 71 … … 190 188 /* Configure the table by hiding the headers etc.: */ 191 189 m_pTableWidget->setRowCount(20); 192 m_pTableWidget->setColumnCount( 3);190 m_pTableWidget->setColumnCount(iColumCount); 193 191 m_pTableWidget->verticalHeader()->hide(); 194 192 m_pTableWidget->horizontalHeader()->hide(); … … 231 229 } 232 230 231 // insertTitleRow(iTableRow++, m_strSystemTitle, UIIconPool::iconSet(":/vrdp_16px.png")); 233 232 234 233 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationConfiguration.h
r80343 r80345 87 87 /** @name Cached translated string. 88 88 * @{ */ 89 QString m_strError;90 91 /** General section. */92 89 QString m_strGeneralTitle; 93 QString m_strGeneralName;94 QString m_strGeneralOSType;95 /** System section. */96 90 QString m_strSystemTitle; 97 91 QString m_strDisplayTitle; 98 92 /** @} */ 99 93
Note:
See TracChangeset
for help on using the changeset viewer.