Changeset 101078 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Sep 11, 2023 1:49:47 PM (17 months ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationObjects.cpp
r101035 r101078 3222 3222 CProgress UINotificationProgressCloudMachineClone::createProgress(COMResult &comResult) 3223 3223 { 3224 / / This is wrong, we need to acquire ocid, we have no one for now ..3225 m_ uId = m_comMachine.GetId();3224 /* Acquire cloud VM internal id: */ 3225 m_strId = m_comMachine.GetCloudId(); 3226 3226 if (!m_comMachine.isOk()) 3227 3227 { … … 3243 3243 /* Initialize progress-wrapper: */ 3244 3244 CCloudMachine comCloneMachine; 3245 // This is wrong, we need to pass ocid, we have no one for now .. 3246 const QString strId = m_uId.toString(); 3247 CProgress comProgress = m_comClient.CloneInstance(strId, m_strCloneName, comCloneMachine); 3245 CProgress comProgress = m_comClient.CloneInstance(m_strId, m_strCloneName, comCloneMachine); 3248 3246 /* Store COM result: */ 3249 3247 comResult = m_comMachine; -
trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationObjects.h
r101035 r101078 1858 1858 /** Holds the clone name. */ 1859 1859 QString m_strCloneName; 1860 / / This is wrong, we need to store ocid, we have no one for now ..1861 Q Uuid m_uId;1860 /** Holds the machine internal id. */ 1861 QString m_strId; 1862 1862 /** Holds the machine name. */ 1863 1863 QString m_strName;
Note:
See TracChangeset
for help on using the changeset viewer.