Changeset 79814 in vbox for trunk/src/VBox
- Timestamp:
- Jul 16, 2019 3:59:06 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 132188
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIFormEditorWidget.cpp
r79798 r79814 1398 1398 } 1399 1399 1400 void UIFormEditorWidget::makeSureEditorDataCommitted() 1401 { 1402 m_pTableView->makeSureEditorDataCommitted(); 1403 } 1404 1400 1405 bool UIFormEditorWidget::eventFilter(QObject *pObject, QEvent *pEvent) 1401 1406 { -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIFormEditorWidget.h
r79242 r79814 44 44 void setVirtualSystemDescriptionForm(const CVirtualSystemDescriptionForm &comForm); 45 45 46 /** Makes sure current editor data committed. */ 47 void makeSureEditorDataCommitted(); 48 46 49 protected: 47 50 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic3.cpp
r79542 r79814 215 215 if (fIsFormatCloudOne) 216 216 { 217 /* Make sure table has own data committed: */ 218 m_pFormEditor->makeSureEditorDataCommitted(); 219 217 220 /* Check whether we have proper VSD form: */ 218 221 CVirtualSystemDescriptionForm comForm = fieldImp("vsdExportForm").value<CVirtualSystemDescriptionForm>(); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageExpert.cpp
r79699 r79814 629 629 if (fIsFormatCloudOne) 630 630 { 631 /* Make sure table has own data committed: */ 632 m_pFormEditor->makeSureEditorDataCommitted(); 633 631 634 /* Check whether we have proper VSD form: */ 632 635 CVirtualSystemDescriptionForm comForm = fieldImp("vsdExportForm").value<CVirtualSystemDescriptionForm>(); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIWizardImportAppPageBasic2.cpp
r78970 r79814 286 286 if (fIsSourceCloudOne) 287 287 { 288 /* Make sure table has own data committed: */ 289 m_pFormEditor->makeSureEditorDataCommitted(); 290 288 291 /* Check whether we have proper VSD form: */ 289 292 CVirtualSystemDescriptionForm comForm = fieldImp("vsdForm").value<CVirtualSystemDescriptionForm>(); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIWizardImportAppPageExpert.cpp
r79365 r79814 383 383 if (fIsSourceCloudOne) 384 384 { 385 /* Make sure table has own data committed: */ 386 m_pFormEditor->makeSureEditorDataCommitted(); 387 385 388 /* Check whether we have proper VSD form: */ 386 389 CVirtualSystemDescriptionForm comForm = fieldImp("vsdForm").value<CVirtualSystemDescriptionForm>(); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageBasic2.cpp
r79752 r79814 149 149 startProcessing(); 150 150 151 /* Make sure table has own data committed: */ 152 m_pFormEditor->makeSureEditorDataCommitted(); 153 151 154 /* Check whether we have proper VSD form: */ 152 155 CVirtualSystemDescriptionForm comForm = vsdForm(); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageExpert.cpp
r79752 r79814 267 267 startProcessing(); 268 268 269 /* Make sure table has own data committed: */ 270 m_pFormEditor->makeSureEditorDataCommitted(); 271 269 272 /* Check whether we have proper VSD form: */ 270 273 CVirtualSystemDescriptionForm comForm = UIWizardNewCloudVMPage1::vsdForm();
Note:
See TracChangeset
for help on using the changeset viewer.