- Timestamp:
- Oct 8, 2014 7:29:09 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/DisplayImpl.cpp
r52978 r52979 1459 1459 int32_t xOrigin = 0; 1460 1460 int32_t yOrigin = 0; 1461 bool fEnabled = true;1461 GuestMonitorStatus_T guestMonitorStatus = GuestMonitorStatus_Enabled; 1462 1462 1463 1463 if (aScreenId == VBOX_VIDEO_PRIMARY_SCREEN) … … 1484 1484 xOrigin = pFBInfo->xOrigin; 1485 1485 yOrigin = pFBInfo->yOrigin; 1486 fEnabled = !RT_BOOL(pFBInfo->flags & VBVA_SCREEN_F_DISABLED); 1486 if (pFBInfo->flags & VBVA_SCREEN_F_DISABLED) 1487 guestMonitorStatus = GuestMonitorStatus_Disabled; 1487 1488 } 1488 1489 else … … 1502 1503 *aYOrigin = yOrigin; 1503 1504 if (aGuestMonitorStatus) 1504 *aGuestMonitorStatus = fEnabled? GuestMonitorStatus_Enabled: GuestMonitorStatus_Disabled;1505 *aGuestMonitorStatus = guestMonitorStatus; 1505 1506 1506 1507 return S_OK;
Note:
See TracChangeset
for help on using the changeset viewer.