Changeset 61667 in vbox for trunk/src/VBox/Main/src-server/HostImpl.cpp
- Timestamp:
- Jun 10, 2016 6:22:09 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/HostImpl.cpp
r60509 r61667 1403 1403 /* notify the proxy (only when the filter is active) */ 1404 1404 if ( m->pUSBProxyService->isActive() 1405 && pFilter->i_getData().m Active)1405 && pFilter->i_getData().mData.fActive) 1406 1406 { 1407 1407 ComAssertRet(pFilter->i_getId() == NULL, E_FAIL); … … 1457 1457 1458 1458 /* notify the proxy (only when the filter is active) */ 1459 if (m->pUSBProxyService->isActive() && filter->i_getData().m Active)1459 if (m->pUSBProxyService->isActive() && filter->i_getData().mData.fActive) 1460 1460 { 1461 1461 ComAssertRet(filter->i_getId() != NULL, E_FAIL); … … 1757 1757 1758 1758 /* notify the proxy (only when the filter is active) */ 1759 if (pFilter->i_getData().m Active)1759 if (pFilter->i_getData().mData.fActive) 1760 1760 { 1761 1761 HostUSBDeviceFilter *flt = pFilter; /* resolve ambiguity */ … … 2250 2250 { 2251 2251 // insert/remove the filter from the proxy 2252 if (aFilter->i_getData().m Active)2252 if (aFilter->i_getData().mData.fActive) 2253 2253 { 2254 2254 ComAssertRet(aFilter->i_getId() == NULL, E_FAIL); … … 2264 2264 else 2265 2265 { 2266 if (aFilter->i_getData().m Active)2266 if (aFilter->i_getData().mData.fActive) 2267 2267 { 2268 2268 // update the filter in the proxy
Note:
See TracChangeset
for help on using the changeset viewer.