Changeset 59841 in vbox
- Timestamp:
- Feb 26, 2016 10:46:42 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 105734
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIDnDHandler.cpp
r59783 r59841 656 656 */ 657 657 rc = retrieveDataInternal(dropAction, strMIMEType, m_vecData); 658 LogRel3(("DnD: Received data, rc=%Rrc\n", rc));659 660 if (RT_SUCCESS(rc))658 if (RT_FAILURE(rc)) 659 LogRel3(("DnD: Receiving data failed: %Rrc\n", rc)); 660 else 661 661 m_fDataRetrieved = true; 662 662 } … … 695 695 QVector<uint8_t> &vecData) 696 696 { 697 Log FlowFunc(("Retrieving data as '%s', dropAction=%d\n", qPrintable(strMIMEType), dropAction));697 LogRel3(("DnD: Retrieving data from guest as '%s' (%s)\n", qPrintable(strMIMEType), qPrintable(dropAction))); 698 698 699 699 int rc = VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.