Changeset 22215 in vbox for trunk/src/VBox/Main
- Timestamp:
- Aug 13, 2009 12:41:04 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/DisplayImpl.cpp
r21878 r22215 2349 2349 if(FAILED(hr)) 2350 2350 { 2351 rc = VERR_GENERAL_FAILURE;2351 rc = (hr == E_NOTIMPL) ? VERR_NOT_IMPLEMENTED : VERR_GENERAL_FAILURE; 2352 2352 } 2353 2353 … … 2363 2363 { 2364 2364 /* tell the guest the command is complete */ 2365 pCommand->Flags &= (~VBOXVHWACMD_FLAG_HG_ASYNCH); 2365 2366 pCommand->rc = rc; 2366 2367 }
Note:
See TracChangeset
for help on using the changeset viewer.