Changeset 92833 in vbox for trunk/src/VBox
- Timestamp:
- Dec 8, 2021 5:06:38 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 148760
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/SharedClipboard/clipboard-x11.cpp
r91933 r92833 121 121 { "text/html", SHCLX11FMT_HTML, VBOX_SHCL_FMT_HTML }, 122 122 { "text/html;charset=utf-8", SHCLX11FMT_HTML, VBOX_SHCL_FMT_HTML }, 123 { "application/x-moz-nativehtml", SHCLX11FMT_HTML, VBOX_SHCL_FMT_HTML }, 123 124 124 125 { "image/bmp", SHCLX11FMT_BMP, VBOX_SHCL_FMT_BITMAP }, … … 1721 1722 { 1722 1723 char *pszFmts2 = ShClFormatsToStrA(pCtx->vboxFormats); 1723 AssertPtrReturn(pszFmts2, VERR_NO_MEMORY); 1724 LogRel(("Shared Clipboard: Converting VBox formats '%s' to '%s' for X11 (idxFmtX11=%u, fmtX11=%u) failed, rc=%Rrc\n", 1725 pszFmts2, g_aFormats[idxFmtX11].pcszAtom, idxFmtX11, fmtX11, rc)); 1726 RTStrFree(pszFmts2); 1724 char *pszAtomName = XGetAtomName(XtDisplay(pCtx->pWidget), *atomTarget); 1725 1726 LogRel(("Shared Clipboard: Converting VBox formats '%s' to '%s' for X11 (idxFmtX11=%u, fmtX11=%u, atomTarget='%s') failed, rc=%Rrc\n", 1727 pszFmts2 ? pszFmts2 : "unknown", g_aFormats[idxFmtX11].pcszAtom, idxFmtX11, fmtX11, pszAtomName ? pszAtomName : "unknown", rc)); 1728 1729 if (pszFmts2) 1730 RTStrFree(pszFmts2); 1731 if (pszAtomName) 1732 XFree(pszAtomName); 1727 1733 } 1728 1734
Note:
See TracChangeset
for help on using the changeset viewer.