Changeset 107686 in vbox
- Timestamp:
- Jan 10, 2025 4:34:50 PM (6 weeks ago)
- svn:sync-xref-src-repo-rev:
- 166779
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.cpp
r107412 r107686 765 765 } 766 766 767 /* Fill structure fields: */767 /* Fill and append structure fields: */ 768 768 StorageDeviceInfo guiStorageDevice; 769 769 guiStorageDevice.m_strControllerName = strControllerName; // already confirmed … … 801 801 break; 802 802 } 803 if (fSuccess) 804 { 805 const StorageSlot guiStorageSlot(enmStorageBus, iPort, iDevice); 806 guiStorageDevice.m_guiStorageSlot = guiStorageSlot; 807 } 808 809 /* Append or break if necessary: */ 810 if (fSuccess) 811 guiStorageDevices << guiStorageDevice; 812 else 813 break; 803 const StorageSlot guiStorageSlot(enmStorageBus, iPort, iDevice); 804 guiStorageDevice.m_guiStorageSlot = guiStorageSlot; 805 guiStorageDevices << guiStorageDevice; 814 806 } 815 807 }
Note:
See TracChangeset
for help on using the changeset viewer.