Changeset 89965 in vbox
- Timestamp:
- Jun 30, 2021 8:22:45 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.cpp
r89959 r89965 631 631 void UIMessageCenter::cannotEnumerateHostUSBDevices(const CHost &comHost, QWidget *pParent /* = 0 */) const 632 632 { 633 QString strHelpKeyword; 634 /* Refer users to manual's trouble shooting section depending on the host platform: */ 635 #if defined(RT_OS_LINUX) 636 strHelpKeyword = "ts_usb-linux"; 637 #elif defined(RT_OS_WINDOWS) 638 strHelpKeyword = "ts_win-guests"; 639 #elif defined(RT_OS_SOLARIS) 640 strHelpKeyword = "ts_sol-guests"; 641 #elif defined(RT_OS_DARWIN) 642 #endif 633 643 error(pParent, MessageType_Warning, 634 644 tr("Failed to enumerate host USB devices."), 635 645 UIErrorString::formatErrorInfo(comHost), "USBEnumerationWarning", 636 "install-linux-vboxusers" /* help keyword */);646 strHelpKeyword); 637 647 } 638 648
Note:
See TracChangeset
for help on using the changeset viewer.