Changeset 88446 in vbox
- Timestamp:
- Apr 9, 2021 6:04:37 PM (4 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsGeneral.cpp
r87608 r88446 323 323 AssertPtrReturnVoid(m_pEditorDescription); 324 324 newGeneralData.m_strDescription = m_pEditorDescription->toPlainText().isEmpty() ? 325 QString ::null: m_pEditorDescription->toPlainText();325 QString() : m_pEditorDescription->toPlainText(); 326 326 327 327 /* Gather new 'Encryption' data: */ -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIFilePathSelector.cpp
r87608 r88446 196 196 void UIFilePathSelector::setPath(const QString &strPath, bool fRefreshText /* = true */) 197 197 { 198 m_strPath = strPath.isEmpty() ? QString ::null:198 m_strPath = strPath.isEmpty() ? QString() : 199 199 QDir::toNativeSeparators(strPath); 200 200 if (fRefreshText) … … 340 340 { 341 341 if (m_strDefaultPath.isEmpty()) 342 changePath(QString ::null);342 changePath(QString()); 343 343 else 344 344 changePath(m_strDefaultPath); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevm/UIWizardCloneVM.cpp
r86979 r88446 116 116 117 117 /* Create a new machine object. */ 118 CMachine cloneMachine = vbox.CreateMachine(strSettingsFile, strName, QVector<QString>(), QString ::null, QString::null);118 CMachine cloneMachine = vbox.CreateMachine(strSettingsFile, strName, QVector<QString>(), QString(), QString()); 119 119 if (!vbox.isOk()) 120 120 { -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevm/UIWizardCloneVMPageBasic1.cpp
r82968 r88446 95 95 setCloneFilePath(vbox.ComposeMachineFilename(m_pNameLineEdit ? m_pNameLineEdit->text() : QString(), 96 96 m_strGroup, 97 QString ::null,97 QString(), 98 98 m_pPathSelector ? m_pPathSelector->path() : QString())); 99 99 const QFileInfo fileInfo(m_strCloneFilePath);
Note:
See TracChangeset
for help on using the changeset viewer.