Changeset 77083 in vbox
- Timestamp:
- Jan 31, 2019 4:30:07 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestCtrlPrivate.cpp
r77082 r77083 1279 1279 * @param pWaitEvt Pointer to event to wait for. 1280 1280 * @param msTimeout Timeout (in ms) for waiting. 1281 * @param pType Event type of following IEvent. 1282 * Optional. 1283 * @param ppEvent Pointer to IEvent which got triggered 1284 * for this event. Optional. 1281 * @param pType Event type of following IEvent. Optional. 1282 * @param ppEvent Pointer to IEvent which got triggered for this event. Optional. 1285 1283 */ 1286 1284 int GuestBase::waitForEvent(GuestWaitEvent *pWaitEvt, uint32_t msTimeout, VBoxEventType_T *pType, IEvent **ppEvent) … … 1294 1292 { 1295 1293 const ComPtr<IEvent> pThisEvent = pWaitEvt->Event(); 1296 if (pThisEvent.isNotNull()) /* Having a VBoxEventType_ event is optional. */ /** @todo r=bird: misplaced comment?*/1294 if (pThisEvent.isNotNull()) /* Make sure that we actually have an event associated. */ 1297 1295 { 1298 1296 if (pType)
Note:
See TracChangeset
for help on using the changeset viewer.