Changeset 25942 in vbox for trunk/src/VBox/GuestHost
- Timestamp:
- Jan 20, 2010 5:26:22 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/SharedClipboard/x11-clipboard.cpp
r24142 r25942 562 562 static void clipStopEventThreadWorker(XtPointer pUserData, XtIntervalId *) 563 563 { 564 564 565 565 CLIPBACKEND *pCtx = (CLIPBACKEND *)pUserData; 566 566 … … 708 708 CLIPBACKEND *pCtx = (CLIPBACKEND *) 709 709 RTMemAllocZ(sizeof(CLIPBACKEND)); 710 if (pCtx && !RTEnv Get("DISPLAY"))710 if (pCtx && !RTEnvExist("DISPLAY")) 711 711 { 712 712 /* … … 1472 1472 /** A structure containing information about where to store a request 1473 1473 * for the X11 clipboard contents. */ 1474 struct _CLIPREADX11CBREQ 1474 struct _CLIPREADX11CBREQ 1475 1475 { 1476 1476 /** The format VBox would like the data in */ … … 2575 2575 /* We can't test anything without an X session, so just return success 2576 2576 * in that case. */ 2577 if (!RTEnv Get("DISPLAY"))2577 if (!RTEnvExist("DISPLAY")) 2578 2578 { 2579 2579 RTTestPrintf(hTest, RTTESTLVL_INFO,
Note:
See TracChangeset
for help on using the changeset viewer.