Changeset 81042 in vbox
- Timestamp:
- Sep 27, 2019 10:30:21 AM (5 years ago)
- Location:
- trunk/src/VBox/Additions/x11/VBoxClient
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/VBoxClient.h
r81040 r81042 65 65 DECLINLINE(void) VBClServiceDefaultCleanup(struct VBCLSERVICE **ppInterface) 66 66 { 67 NOREF(ppInterface);67 RT_NOREF(ppInterface); 68 68 } 69 69 -
trunk/src/VBox/Additions/x11/VBoxClient/draganddrop.cpp
r81040 r81042 1338 1338 pReq->requestor, 1339 1339 gX11->xErrorToString(xRc).c_str())); 1340 NOREF(xRc);1340 RT_NOREF(xRc); 1341 1341 } 1342 1342 } … … 2342 2342 { 2343 2343 int rc2 = VbglR3DnDGHSendError(&m_dndCtx, rc); 2344 LogFlowThisFunc(("Sending error %Rrc to host resulted in %Rrc\n", rc, rc2)); NOREF(rc2);2344 LogFlowThisFunc(("Sending error %Rrc to host resulted in %Rrc\n", rc, rc2)); RT_NOREF(rc2); 2345 2345 /* This is not fatal for us, just ignore. */ 2346 2346 } … … 2553 2553 2554 2554 LogFlowThisFunc(("fInRootWnd=%RTbool, wndRoot=%RU32, wndChild=%RU32, iRootX=%d, iRootY=%d\n", 2555 RT_BOOL(fInRootWnd), wndRoot, wndChild, iRootX, iRootY)); NOREF(fInRootWnd);2555 RT_BOOL(fInRootWnd), wndRoot, wndChild, iRootX, iRootY)); RT_NOREF(fInRootWnd); 2556 2556 2557 2557 if (piRootX) -
trunk/src/VBox/Additions/x11/VBoxClient/hostversion.cpp
r81040 r81042 129 129 LogFlowFunc(("\n")); 130 130 131 NOREF(ppInterface);131 RT_NOREF(ppInterface); 132 132 133 133 /* Because we need desktop notifications to be displayed, wait -
trunk/src/VBox/Additions/x11/VBoxClient/seamless.cpp
r81040 r81042 311 311 static void cleanup(struct VBCLSERVICE **ppInterface) 312 312 { 313 NOREF(ppInterface);313 RT_NOREF(ppInterface); 314 314 VbglR3SeamlessSetCap(false); 315 315 VbglR3Term();
Note:
See TracChangeset
for help on using the changeset viewer.