Changeset 78995 in vbox for trunk/src/VBox/Devices/VMMDev
- Timestamp:
- Jun 5, 2019 1:30:45 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 131127
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/VMMDev/VMMDev.cpp
r78949 r78995 3570 3570 */ 3571 3571 static DECLCALLBACK(int) 3572 vmmdevIPort_RequestDisplayChange(PPDMIVMMDEVPORT pInterface, uint32_t cDisplays, VMMDevDisplayDef const *paDisplays, bool fForce )3572 vmmdevIPort_RequestDisplayChange(PPDMIVMMDEVPORT pInterface, uint32_t cDisplays, VMMDevDisplayDef const *paDisplays, bool fForce, bool fMayNotify) 3573 3573 { 3574 3574 int rc = VINF_SUCCESS; … … 3604 3604 /* We could validate the information here but hey, the guest can do that as well! */ 3605 3605 pRequest->displayChangeRequest = *p; 3606 pRequest->fPending = fDifferentResolution ;3606 pRequest->fPending = fDifferentResolution && fMayNotify; 3607 3607 3608 3608 fNotifyGuest = fNotifyGuest || fDifferentResolution; 3609 3609 } 3610 3610 3611 if (RT_SUCCESS(rc) )3611 if (RT_SUCCESS(rc) && fMayNotify) 3612 3612 { 3613 3613 if (fNotifyGuest)
Note:
See TracChangeset
for help on using the changeset viewer.