- Timestamp:
- Jan 9, 2019 1:40:57 PM (6 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp
r76690 r76737 2725 2725 { 2726 2726 QStringList files = pVisoCreator->entryList(); 2727 QString strVisoName = pVisoCreator->visoName(); 2727 2728 if (files.empty() || files[0].isEmpty()) 2728 2729 return QUuid(); … … 2742 2743 { 2743 2744 RTStrmPrintf(pStrmViso, "--iprt-iso-maker-file-marker-bourne-sh %RTuuid\n", &Uuid); 2745 if (!strVisoName.isEmpty()) 2746 RTStrmPrintf(pStrmViso, "--volume-id=%s\n", strVisoName.toUtf8().constData()); 2744 2747 2745 2748 for (int iFile = 0; iFile < files.size(); iFile++) -
trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoCreator.cpp
r76730 r76737 52 52 } 53 53 54 QStringList UIVisoCreator::entryList() 54 QStringList UIVisoCreator::entryList() const 55 55 { 56 56 if (!m_pVisoBrowser) 57 57 return QStringList(); 58 58 return m_pVisoBrowser->entryList(); 59 } 60 61 const QString &UIVisoCreator::visoName() const 62 { 63 return m_visoOptions.m_strVisoName; 59 64 } 60 65 -
trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoCreator.h
r76690 r76737 53 53 UIVisoCreator(QWidget *pParent = 0); 54 54 ~UIVisoCreator(); 55 QStringList entryList(); 55 QStringList entryList() const; 56 const QString &visoName() const; 56 57 57 58 #ifdef VBOX_WS_MAC
Note:
See TracChangeset
for help on using the changeset viewer.