- Timestamp:
- Jun 23, 2021 4:33:18 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 145324
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/manager/UIVirtualBoxManager.cpp
r89851 r89867 709 709 if (!comHost.isOk()) 710 710 return; 711 if (comHost.GetUSBDevices(). size() == 0&& comHost.isWarning())711 if (comHost.GetUSBDevices().isEmpty() && comHost.isWarning()) 712 712 msgCenter().cannotEnumerateHostUSBDevices(comHost, this); 713 713 } -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.cpp
r88680 r89867 62 62 #include "CAudioAdapter.h" 63 63 #include "CGraphicsAdapter.h" 64 #include "CHostUSBDevice.h" 64 65 #include "CRecordingSettings.h" 65 66 #include "CSystemProperties.h" … … 1885 1886 #endif /* VBOX_WITH_NETFLT */ 1886 1887 1888 /* Check for USB enumeration warning. Don't return false even if we have a warning: */ 1889 CHost comHost = uiCommon().host(); 1890 if (comHost.GetUSBDevices().isEmpty() && comHost.isWarning()) 1891 msgCenter().cannotEnumerateHostUSBDevices(comHost, activeMachineWindow()); 1892 1887 1893 /* True by default: */ 1888 1894 return true;
Note:
See TracChangeset
for help on using the changeset viewer.