Changeset 97751 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Dec 6, 2022 9:49:16 AM (2 years ago)
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestDnDSourceImpl.cpp
r97750 r97751 1197 1197 AssertRC(rc2); 1198 1198 } 1199 else if (rc != VERR_ GSTDND_GUEST_ERROR) /* Guest-side error are already handled in the callback. */1199 else if (rc != VERR_DND_GUEST_ERROR) /* Guest-side error are already handled in the callback. */ 1200 1200 { 1201 1201 int rc2 = pCtx->pState->setProgress(100, DND_PROGRESS_ERROR, … … 1338 1338 rc = VINF_SUCCESS; 1339 1339 } 1340 else if (rc != VERR_ GSTDND_GUEST_ERROR) /* Guest-side error are already handled in the callback. */1340 else if (rc != VERR_DND_GUEST_ERROR) /* Guest-side error are already handled in the callback. */ 1341 1341 { 1342 1342 rc2 = pCtx->pState->setProgress(100, DND_PROGRESS_ERROR, … … 1433 1433 1434 1434 if (RT_SUCCESS(rc)) 1435 rcCallback = VERR_ GSTDND_GUEST_ERROR;1435 rcCallback = VERR_DND_GUEST_ERROR; 1436 1436 break; 1437 1437 } … … 1617 1617 1618 1618 if (RT_SUCCESS(rc)) 1619 rcCallback = VERR_ GSTDND_GUEST_ERROR;1619 rcCallback = VERR_DND_GUEST_ERROR; 1620 1620 break; 1621 1621 } -
trunk/src/VBox/Main/src-client/GuestDnDTargetImpl.cpp
r97749 r97751 1202 1202 1203 1203 int vrc = VINF_SUCCESS; 1204 int vrcGuest = VINF_SUCCESS; /* Contains error code from guest in case of VERR_ GSTDND_GUEST_ERROR. */1204 int vrcGuest = VINF_SUCCESS; /* Contains error code from guest in case of VERR_DND_GUEST_ERROR. */ 1205 1205 bool fNotify = false; 1206 1206 … … 1274 1274 if (RT_SUCCESS(vrc)) 1275 1275 { 1276 vrc = VERR_ GSTDND_GUEST_ERROR;1276 vrc = VERR_DND_GUEST_ERROR; 1277 1277 vrcGuest = pCBData->rc; 1278 1278 } … … 1358 1358 } 1359 1359 1360 case VERR_ GSTDND_GUEST_ERROR:1360 case VERR_DND_GUEST_ERROR: 1361 1361 { 1362 1362 LogRel(("DnD: Guest reported error %Rrc, aborting transfer to guest\n", vrcGuest)); … … 1567 1567 vrc = VINF_SUCCESS; 1568 1568 } 1569 else if (vrc != VERR_ GSTDND_GUEST_ERROR) /* Guest-side error are already handled in the callback. */1569 else if (vrc != VERR_DND_GUEST_ERROR) /* Guest-side error are already handled in the callback. */ 1570 1570 { 1571 1571 LogRel(("DnD: Sending transfer data to guest failed with vrc=%Rrc\n", vrc));
Note:
See TracChangeset
for help on using the changeset viewer.