Changeset 87453 in vbox
- Timestamp:
- Jan 27, 2021 5:16:39 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/clipboard.cpp
r87452 r87453 332 332 static DECLCALLBACK(int) vbclShClInit(void) 333 333 { 334 int rc = ShClTransferCtxInit(&g_Ctx.TransferCtx); 334 int rc; 335 336 #ifdef VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS 337 rc = ShClTransferCtxInit(&g_Ctx.TransferCtx); 338 #else 339 rc = VINF_SUCCESS; 340 #endif 335 341 336 342 LogFlowFuncLeaveRC(rc);
Note:
See TracChangeset
for help on using the changeset viewer.