Changeset 105576 in vbox
- Timestamp:
- Aug 2, 2024 12:58:21 PM (4 months ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r105266 r105576 21942 21942 <link to="#takeScreenShotToArray" />. 21943 21943 </note> 21944 <result name="VBOX_E_NOT_SUPPORTED"> 21945 Current screen configuration does not support taking a screen shot 21946 (typically because it is 0x0 in size). 21947 </result> 21944 21948 </desc> 21945 21949 <param name="screenId" type="unsigned long" dir="in"/> -
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.