Changeset 49337 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Oct 30, 2013 4:53:58 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 90338
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp
r49333 r49337 1084 1084 { 1085 1085 QStringList records; 1086 1087 QString strAlias = webcam.GetAlias();1088 if (!strAlias.isEmpty())1089 records << tr("<nobr>Alias: %1</nobr>", "webcam tooltip").arg(strAlias);1090 1086 1091 1087 QString strName = webcam.GetName(); -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.cpp
r49333 r49337 1471 1471 { 1472 1472 /* Check whether there is an accessible video input devices pool: */ 1473 const CHostVideoInputDeviceVector &webcams = host.GetVideoInputDevices(); 1474 bool fWebCamsEnabled = host.isOk(); Q_UNUSED(webcams); 1473 const CHostVideoInputDeviceVector &webcams = host.GetVideoInputDevices(); Q_UNUSED(webcams); 1474 ULONG cOhciCtls = machine.GetUSBControllerCountByType(KUSBControllerType_OHCI); 1475 bool fWebCamsEnabled = host.isOk() && cOhciCtls && machine.GetUSBProxyAvailable(); 1475 1476 1476 1477 /* Show/Hide WebCams menu depending on ExtPack availability: */
Note:
See TracChangeset
for help on using the changeset viewer.