Changeset 92360 in vbox
- Timestamp:
- Nov 11, 2021 11:15:38 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UICommon.cpp
r92352 r92360 1747 1747 const QString &strMachineName /* = QString */) 1748 1748 { 1749 QString strVisoSaveFolder(strDefaultFolder);1750 if (strVisoSaveFolder.isEmpty())1751 strVisoSaveFolder = defaultFolderPathForType(UIMediumDeviceType_DVD);1752 1753 1749 QWidget *pDialogParent = windowManager().realParentWindow(pParent); 1754 1750 UIVisoCreatorDialog *pVisoCreator = 0;//new UIVisoCreatorDialog(pDialogParent, strMachineName); … … 1777 1773 char szVisoPath[RTPATH_MAX]; 1778 1774 QString strFileName = QString("%1%2").arg(strVisoName).arg(".viso"); 1775 1776 QString strVisoSaveFolder(strDefaultFolder); 1777 if (strVisoSaveFolder.isEmpty()) 1778 strVisoSaveFolder = defaultFolderPathForType(UIMediumDeviceType_DVD); 1779 1779 1780 int vrc = RTPathJoin(szVisoPath, sizeof(szVisoPath), strVisoSaveFolder.toUtf8().constData(), strFileName.toUtf8().constData()); 1780 1781 if (RT_SUCCESS(vrc))
Note:
See TracChangeset
for help on using the changeset viewer.