Changeset 83953 in vbox
- Timestamp:
- Apr 23, 2020 3:21:16 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 137507
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/SharedClipboard/clipboard-win.cpp
r83624 r83953 243 243 BOOL fRc; 244 244 if (SharedClipboardWinIsNewAPI(pAPI)) 245 {246 245 fRc = pAPI->pfnAddClipboardFormatListener(pCtx->hWnd); 247 }248 246 else 249 247 { 248 SetLastError(NO_ERROR); 250 249 pCtx->hWndNextInChain = SetClipboardViewer(pCtx->hWnd); 251 fRc = pCtx->hWndNextInChain != NULL ;250 fRc = pCtx->hWndNextInChain != NULL || GetLastError() == NO_ERROR; 252 251 } 253 252
Note:
See TracChangeset
for help on using the changeset viewer.