Changeset 105576 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Aug 2, 2024 12:58:21 PM (8 months ago)
- svn:sync-xref-src-repo-rev:
- 164248
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/DisplayImpl.cpp
r105352 r105576 2039 2039 } 2040 2040 } 2041 else if (vrc == VERR_TRY_AGAIN) 2042 hrc = setErrorBoth(E_UNEXPECTED, vrc, tr("Screenshot is not available at this time")); 2041 else if (vrc == VERR_NOT_SUPPORTED) /* zero screen size (or too large screen size for vram) */ 2042 hrc = setErrorBoth(VBOX_E_NOT_SUPPORTED, vrc, tr("Screenshot is not possible at this time")); 2043 else if (vrc == VERR_TRY_AGAIN) /* resizing while taking screenshot */ 2044 hrc = setErrorBoth(E_UNEXPECTED, vrc, tr("Screenshot is not possible at this time")); 2043 2045 else if (RT_FAILURE(vrc)) 2044 2046 hrc = setErrorBoth(VBOX_E_VM_ERROR, vrc, tr("Could not take a screenshot (%Rrc)"), vrc);
Note:
See TracChangeset
for help on using the changeset viewer.