Changeset 49684 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Nov 27, 2013 3:43:58 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestCtrlImpl.cpp
r49546 r49684 313 313 314 314 default: 315 /* 316 * Try processing generic messages which might 317 * (or might not) supported by certain objects. 318 * If the message either is not found or supported 319 * by the approprirate object, try handling it 320 * in this session object. 321 */ 315 322 rc = pSession->dispatchToObject(pCtxCb, pSvcCb); 316 if (rc == VERR_NOT_FOUND) 323 if ( rc == VERR_NOT_FOUND 324 || rc == VERR_NOT_SUPPORTED) 317 325 { 318 326 alock.acquire();
Note:
See TracChangeset
for help on using the changeset viewer.