Changeset 78128 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Apr 15, 2019 6:28:48 PM (6 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r78110 r78128 685 685 src/wizards/exportappliance/UIWizardExportAppPageExpert.h \ 686 686 src/wizards/importappliance/UIApplianceUnverifiedCertificateViewer.h \ 687 src/wizards/importappliance/UIFormEditorWidget.h \ 687 688 src/wizards/importappliance/UIWizardImportApp.h \ 688 689 src/wizards/importappliance/UIWizardImportAppPageBasic1.h \ … … 940 941 src/widgets/UITabBar.cpp \ 941 942 src/widgets/graphics/UIGraphicsScrollBar.cpp \ 943 src/wizards/importappliance/UIFormEditorWidget.cpp \ 942 944 src/wizards/importappliance/UIWizardImportApp.cpp 943 945 … … 1113 1115 src/wizards/exportappliance/UIWizardExportAppPageExpert.cpp \ 1114 1116 src/wizards/importappliance/UIApplianceUnverifiedCertificateViewer.cpp \ 1117 src/wizards/importappliance/UIFormEditorWidget.cpp \ 1115 1118 src/wizards/importappliance/UIWizardImportApp.cpp \ 1116 1119 src/wizards/importappliance/UIWizardImportAppPageBasic1.cpp \ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIWizardImportAppPageBasic2.cpp
r78110 r78128 70 70 } 71 71 72 /* Create form editor widget: */ 73 m_pFormEditor = new UIFormEditorWidget(this); 74 if (m_pFormEditor) 75 { 76 m_pFormEditor->hide(); 77 78 /* Add into layout: */ 79 pMainLayout->addWidget(m_pFormEditor); 80 } 81 72 82 /* Create certificate label: */ 73 83 m_pCertLabel = new QLabel("<cert label>", this); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIWizardImportAppPageBasic2.h
r78110 r78128 23 23 24 24 /* GUI includes: */ 25 #include "UIFormEditorWidget.h" 25 26 #include "UIWizardImportAppDefs.h" 26 27 #include "UIWizardPage.h" … … 42 43 43 44 /** Holds the appliance widget instance. */ 44 ImportAppliancePointer m_pApplianceWidget; 45 ImportAppliancePointer m_pApplianceWidget; 46 /** Holds the Form Editor widget instance. */ 47 UIFormEditorWidgetPointer m_pFormEditor; 45 48 }; 46 49
Note:
See TracChangeset
for help on using the changeset viewer.