Changeset 103496 in vbox
- Timestamp:
- Feb 21, 2024 2:32:19 PM (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIDnDMIMEData.cpp
r101566 r103496 83 83 84 84 LogFlowFunc(("%s: %RTbool (QtMimeData: %RTbool, curAction=0x%x)\n", 85 strMIMEType.to StdString().c_str(), fRc, QMimeData::hasFormat(strMIMEType), m_curAction));85 strMIMEType.toUtf8().constData(), fRc, QMimeData::hasFormat(strMIMEType), m_curAction)); 86 86 87 87 return fRc; … … 103 103 104 104 LogFlowFunc(("state=%RU32, curAction=0x%x, defAction=0x%x, mimeType=%s, type=%d (%s)\n", 105 m_enmState, m_curAction, m_defAction, strMIMEType.to StdString().c_str(), vaType, metaType.name()));105 m_enmState, m_curAction, m_defAction, strMIMEType.toUtf8().constData(), vaType, metaType.name())); 106 106 107 107 int rc = VINF_SUCCESS; … … 147 147 else if (!m_lstFormats.contains(strMIMEType)) 148 148 { 149 LogRel(("DnD: Unsupported MIME type '%s'\n", strMIMEType.to StdString().c_str()));149 LogRel(("DnD: Unsupported MIME type '%s'\n", strMIMEType.toUtf8().constData())); 150 150 rc = VERR_NOT_SUPPORTED; 151 151 } … … 176 176 { 177 177 LogRel3(("DnD: Returning data for MIME type=%s, variant type=%s, rc=%Rrc\n", 178 strMIMEType.to StdString().c_str(), metaType.name(), rc));178 strMIMEType.toUtf8().constData(), metaType.name(), rc)); 179 179 180 180 return vaData;
Note:
See TracChangeset
for help on using the changeset viewer.