Changeset 97718 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Nov 30, 2022 4:42:22 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIDnDHandler.cpp
r96407 r97718 173 173 toVBoxDnDActions(possibleActions), 174 174 pMimeData->formats().toVector(), strFormat); 175 176 /* Has the guest accepted the drop event? */ 177 if ( m_dndTarget.isOk() 178 && enmResult != KDnDAction_Ignore) 175 if (!m_dndTarget.isOk()) 176 { 177 msgCenter().cannotDropDataToGuest(m_dndTarget, m_pParent); 178 } 179 else if (enmResult != KDnDAction_Ignore) /* Has the guest accepted the drop event? */ 179 180 { 180 181 LogRel2(("DnD: Guest requested format '%s'\n", strFormat.toUtf8().constData()));
Note:
See TracChangeset
for help on using the changeset viewer.