Changeset 82513 in vbox for trunk/src/VBox/Additions/WINNT
- Timestamp:
- Dec 9, 2019 1:21:55 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 135366
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxClipboard.cpp
r82507 r82513 256 256 if (RT_SUCCESS(rc)) 257 257 { 258 LogFunc(("WM_CLIPBOARDUPDATE: Reporting formats 0x%x\n", Formats.Formats));259 rc = VbglR3Clipboard FormatsReportEx(&pCtx->CmdCtx, &Formats);258 LogFunc(("WM_CLIPBOARDUPDATE: Reporting formats %#x\n", Formats.Formats)); 259 rc = VbglR3ClipboardReportFormats(pCtx->CmdCtx.uClientID, Formats.Formats); 260 260 } 261 261 } … … 301 301 SHCLFORMATDATA Formats; 302 302 rc = SharedClipboardWinGetFormats(pWinCtx, &Formats); 303 if ( RT_SUCCESS(rc)303 if ( RT_SUCCESS(rc) 304 304 && Formats.Formats != VBOX_SHCL_FMT_NONE) 305 { 306 rc = VbglR3ClipboardFormatsReportEx(&pCtx->CmdCtx, &Formats); 307 } 305 rc = VbglR3ClipboardReportFormats(pCtx->CmdCtx.uClientID, Formats.Formats); 308 306 } 309 307 else
Note:
See TracChangeset
for help on using the changeset viewer.