- Timestamp:
- Feb 24, 2009 5:49:57 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxProblemReporter.cpp
r17071 r17084 689 689 return; 690 690 691 #ifdef RT_OS_LINUX 692 /* xxx There is no macro to turn an error into a warning, but we need 693 * to do that here. */ 694 if (res.rc() == (VBOX_E_HOST_ERROR & ~0x80000000)) 695 { 696 message (mainWindowShown(), VBoxProblemReporter::Warning, 697 tr ("Could not access USB on the host system, because " 698 "neither the USB file system (usbfs) nor the DBus " 699 "and hal services are currently available. If you " 700 "wish to use host USB devices inside guest systems, " 701 "you must correct this and restart VirtualBox."), 702 formatErrorInfo (res), 703 "cannotAccessUSB" /* aAutoConfirmId */); 704 return; 705 } 706 #endif 691 707 message (mainWindowShown(), res.isWarning() ? Warning : Error, 692 708 tr ("Failed to access the USB subsystem."),
Note:
See TracChangeset
for help on using the changeset viewer.