Changeset 105603 in vbox
- Timestamp:
- Aug 6, 2024 12:36:35 PM (9 months ago)
- svn:sync-xref-src-repo-rev:
- 164282
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors/UIWizardDiskEditors.cpp ¶
r105260 r105603 361 361 /* Location widgets: */ 362 362 if (!m_fExpertMode) 363 m_pLocationLabel = new QIRichTextLabel ;363 m_pLocationLabel = new QIRichTextLabel(this); 364 364 QHBoxLayout *pLocationLayout = new QHBoxLayout; 365 365 m_pLocationEditor = new QILineEdit; … … 382 382 /* Size widgets: */ 383 383 if (!m_fExpertMode) 384 m_pSizeLabel = new QIRichTextLabel ;384 m_pSizeLabel = new QIRichTextLabel(this); 385 385 m_pMediumSizeEditor = new UIMediumSizeEditor(0 /* parent */, uMinimumMediumSize); 386 386 -
TabularUnified trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageFormat.h ¶
r103982 r105603 224 224 CCloudProfile m_comCloudProfile; 225 225 226 227 226 /** Holds the format label instance. */ 228 227 QIRichTextLabel *m_pLabelFormat; -
TabularUnified trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDVariantPage.cpp ¶
r103957 r105603 53 53 AssertReturnVoid(pMainLayout); 54 54 55 m_pDescriptionLabel = new QIRichTextLabel ;56 m_pDynamicLabel = new QIRichTextLabel ;57 m_pFixedLabel = new QIRichTextLabel ;58 m_pSplitLabel = new QIRichTextLabel ;55 m_pDescriptionLabel = new QIRichTextLabel(this); 56 m_pDynamicLabel = new QIRichTextLabel(this); 57 m_pFixedLabel = new QIRichTextLabel(this); 58 m_pSplitLabel = new QIRichTextLabel(this); 59 59 60 60 pMainLayout->addWidget(m_pDescriptionLabel); -
TabularUnified trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMDiskPage.cpp ¶
r105570 r105603 440 440 if (fWithLabels) 441 441 { 442 m_pDescriptionLabel = new QIRichTextLabel ;443 m_pDynamicLabel = new QIRichTextLabel ;444 m_pFixedLabel = new QIRichTextLabel ;442 m_pDescriptionLabel = new QIRichTextLabel(pContainerWidget); 443 m_pDynamicLabel = new QIRichTextLabel(pContainerWidget); 444 m_pFixedLabel = new QIRichTextLabel(pContainerWidget); 445 445 446 446 pMainLayout->addWidget(m_pDescriptionLabel); -
TabularUnified trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMNameOSTypePage.cpp ¶
r105487 r105603 747 747 if (m_pSkipUnattendedCheckBox) 748 748 m_pNameAndSystemLayout->addWidget(m_pSkipUnattendedCheckBox, 1, 1); 749 m_pInfoLabel = new QIRichTextLabel ;749 m_pInfoLabel = new QIRichTextLabel(pContainerWidget); 750 750 if (m_pInfoLabel) 751 751 m_pNameAndSystemLayout->addWidget(m_pInfoLabel, 2, 1);
Note:
See TracChangeset
for help on using the changeset viewer.