Changeset 97747 in vbox for trunk/src/VBox/HostServices
- Timestamp:
- Dec 6, 2022 9:18:24 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/DragAndDrop/dndmanager.cpp
r97731 r97747 109 109 LogFunc(("Current queue (%zu items, FIFO) is: %s", m_queueMsg.size(), m_queueMsg.isEmpty() ? "<Empty>" : "")); 110 110 for (size_t i = 0; i < m_queueMsg.size(); ++i) 111 Log(("%s ", DnDHostMsgToStr(m_queueMsg[i]->GetType()))); 111 { 112 if (i > 0) 113 Log((" - ")); 114 uint32_t const uType = m_queueMsg[i]->GetType(); 115 Log(("%s (%d / %#x)", DnDHostMsgToStr(uType), uType, uType)); 116 } 112 117 Log(("\n")); 113 118 }
Note:
See TracChangeset
for help on using the changeset viewer.