Changeset 83961 in vbox
- Timestamp:
- Apr 24, 2020 9:26:59 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 137526
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/widgets
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIFormEditorWidget.cpp ¶
r83388 r83961 41 41 #include "CBooleanFormValue.h" 42 42 #include "CChoiceFormValue.h" 43 #include "CForm.h" 43 44 #include "CFormValue.h" 44 45 #include "CRangedIntegerFormValue.h" … … 1438 1439 } 1439 1440 1441 void UIFormEditorWidget::setForm(const CForm &comForm) 1442 { 1443 AssertPtrReturnVoid(m_pTableModel); 1444 /// @todo add some check.. 1445 m_pTableModel->setFormValues(comForm.GetValues()); 1446 adjustTable(); 1447 } 1448 1440 1449 void UIFormEditorWidget::setVirtualSystemDescriptionForm(const CVirtualSystemDescriptionForm &comForm) 1441 1450 { -
TabularUnified trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIFormEditorWidget.h ¶
r82968 r83961 30 30 class UIFormEditorModel; 31 31 class UIFormEditorView; 32 class CForm; 32 33 class CVirtualSystemDescriptionForm; 33 34 … … 47 48 QHeaderView *verticalHeader() const; 48 49 50 /** Defines @a comForm to be edited. */ 51 void setForm(const CForm &comForm); 49 52 /** Defines virtual system description @a comForm to be edited. */ 50 53 void setVirtualSystemDescriptionForm(const CVirtualSystemDescriptionForm &comForm);
Note:
See TracChangeset
for help on using the changeset viewer.