Changeset 73137 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Jul 15, 2018 7:23:18 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 123725
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/widgets
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIApplianceImportEditorWidget.cpp
r73062 r73137 27 27 28 28 /* GUI includes: */ 29 # include "QIRichTextLabel.h" 29 30 # include "QITreeView.h" 30 31 # include "UIApplianceImportEditorWidget.h" … … 70 71 void UIApplianceImportEditorWidget::prepareWidgets() 71 72 { 72 73 m_pPathSelectorLabel = new QLabel(this); 73 m_pPathSelectorLabel = new QIRichTextLabel(this); 74 74 if (m_pPathSelectorLabel) 75 75 { … … 95 95 m_pImportHDsAsVDI->setCheckState(Qt::Checked); 96 96 } 97 97 98 retranslateUi(); 98 99 } … … 248 249 UIApplianceEditorWidget::retranslateUi(); 249 250 if (m_pPathSelectorLabel) 250 m_pPathSelectorLabel->setText(UIWizardImportApp::tr("You can modify the base folder which will host " 251 "all the virtual machines. Virtual home folders " 252 "can also be individually modified.")); 251 m_pPathSelectorLabel->setText(UIWizardImportApp::tr("You can modify the base folder which will host all the virtual machines.\n" 252 "Home folders can also be individually (per virtual machine) modified.")); 253 253 if (m_pCheckBoxReinitMACs) 254 254 { -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIApplianceImportEditorWidget.h
r73062 r73137 24 24 /* Forward declarations: */ 25 25 class UIFilePathSelector; 26 class QIRichTextLabel; 26 27 27 28 class UIApplianceImportEditorWidget: public UIApplianceEditorWidget … … 49 50 50 51 void prepareWidgets(); 51 Q Label *m_pPathSelectorLabel;52 QIRichTextLabel *m_pPathSelectorLabel; 52 53 UIFilePathSelector *m_pPathSelector; 53 54
Note:
See TracChangeset
for help on using the changeset viewer.