Changeset 80623 in vbox for trunk/src/VBox/Additions/x11
- Timestamp:
- Sep 6, 2019 10:05:11 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 133152
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/clipboard.cpp
r80444 r80623 166 166 * @param cb the size of the data in @a pv 167 167 */ 168 void Clip CompleteDataRequestFromX11(VBOXCLIPBOARDCONTEXT *pCtx, int rc, CLIPREADCBREQ *pReq, void *pv, uint32_t cb)168 void ClipRequestFromX11CompleteCallback(VBOXCLIPBOARDCONTEXT *pCtx, int rc, CLIPREADCBREQ *pReq, void *pv, uint32_t cb) 169 169 { 170 170 RT_NOREF1(pCtx); … … 192 192 rc = VERR_NO_MEMORY; 193 193 if (RT_SUCCESS(rc)) 194 rc = ClipStartX11(g_ctx.pBackend );194 rc = ClipStartX11(g_ctx.pBackend, false /* grab */); 195 195 if (RT_SUCCESS(rc)) 196 196 { … … 229 229 switch (Msg) 230 230 { 231 case VBOX_SHARED_CLIPBOARD_HOST_MSG_FORMATS_ WRITE:231 case VBOX_SHARED_CLIPBOARD_HOST_MSG_FORMATS_REPORT: 232 232 { 233 233 /* The host has announced available clipboard formats.
Note:
See TracChangeset
for help on using the changeset viewer.