Changeset 80967 in vbox for trunk/src/VBox/Additions/WINNT/VBoxTray
- Timestamp:
- Sep 24, 2019 11:32:11 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxClipboard.cpp
r80965 r80967 482 482 case WM_DRAWCLIPBOARD: 483 483 { 484 LogFlowFunc(("WM_DRAWCLIPBOARD ,hwnd %p\n", pWinCtx->hWnd));484 LogFlowFunc(("WM_DRAWCLIPBOARD: hwnd %p\n", pWinCtx->hWnd)); 485 485 486 486 if (GetClipboardOwner() != hwnd) … … 490 490 SHCLFORMATDATA Formats; 491 491 int rc = SharedClipboardWinGetFormats(pWinCtx, &Formats); 492 if (RT_SUCCESS(rc)) 492 if ( RT_SUCCESS(rc) 493 && Formats.uFormats != VBOX_SHCL_FMT_NONE) 494 { 493 495 rc = VbglR3ClipboardFormatsSend(&pCtx->CmdCtx, &Formats); 496 } 494 497 } 495 498
Note:
See TracChangeset
for help on using the changeset viewer.