VirtualBox

Changeset 97747 in vbox for trunk/src/VBox/HostServices


Ignore:
Timestamp:
Dec 6, 2022 9:18:24 AM (2 years ago)
Author:
vboxsync
Message:

DnD/HostService: Resolve message types to strings in DnDManager:DumpQueue().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostServices/DragAndDrop/dndmanager.cpp

    r97731 r97747  
    109109    LogFunc(("Current queue (%zu items, FIFO) is: %s", m_queueMsg.size(), m_queueMsg.isEmpty() ? "<Empty>" : ""));
    110110    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    }
    112117    Log(("\n"));
    113118}
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette