Changeset 17553 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Mar 9, 2009 9:34:22 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 43992
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp
r17377 r17553 1976 1976 mDevicesUSBMenu->setEnabled (isRunningOrPaused); 1977 1977 1978 CUSBDevice Enumerator en = cconsole.GetUSBDevices().Enumerate();1979 while (en.HasMore())1978 CUSBDeviceVector devsvec = cconsole.GetUSBDevices(); 1979 for (int i = 0; i < devsvec.size(); ++i) 1980 1980 { 1981 CUSBDevice usb = en.GetNext();1981 CUSBDevice usb = devsvec[i]; 1982 1982 info += QString ("<br><b><nobr>%1</nobr></b>") 1983 1983 .arg (vboxGlobal().details (usb)); -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxGlobal.cpp
r17476 r17553 5544 5544 { 5545 5545 CUSBDevice attachedUSB = 5546 mConsole. GetUSBDevices().FindById (usb.GetId());5546 mConsole.FindUSBDeviceById (usb.GetId()); 5547 5547 action->setChecked (!attachedUSB.isNull()); 5548 5548 action->setEnabled (dev.GetState() !=
Note:
See TracChangeset
for help on using the changeset viewer.