VirtualBox

Changeset 54807 in vbox


Ignore:
Timestamp:
Mar 17, 2015 11:13:01 AM (10 years ago)
Author:
vboxsync
Message:

SharedClipboard/x11-clipboard: logrels.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/GuestHost/SharedClipboard/x11-clipboard.cpp

    r48598 r54807  
    623623static int clipEventThread(RTTHREAD self, void *pvUser)
    624624{
    625     LogRel(("Shared clipboard: starting shared clipboard thread\n"));
     625    LogRel(("Shared clipboard: Starting shared clipboard thread\n"));
    626626
    627627    CLIPBACKEND *pCtx = (CLIPBACKEND *)pvUser;
     
    634634        XtAppProcessEvent(pCtx->appContext, XtIMAll);
    635635    }
    636     LogRel(("Shared clipboard: shared clipboard thread terminated successfully\n"));
     636    LogRel(("Shared clipboard: Shared clipboard thread terminated successfully\n"));
    637637    return VINF_SUCCESS;
    638638}
     
    741741    if (NULL == pDisplay)
    742742    {
    743         LogRel(("Shared clipboard: failed to connect to the X11 clipboard - the window system may not be running.\n"));
     743        LogRel(("Shared clipboard: Failed to connect to the X11 clipboard - the window system may not be running.\n"));
    744744        rc = VERR_NOT_SUPPORTED;
    745745    }
     
    749749        rc = clipLoadXFixes(pDisplay, pCtx);
    750750        if (RT_FAILURE(rc))
    751            LogRel(("Shared clipboard: failed to load the XFIXES extension.\n"));
     751           LogRel(("Shared clipboard: Failed to load the XFIXES extension.\n"));
    752752    }
    753753#endif
     
    760760        if (NULL == pCtx->widget)
    761761        {
    762             LogRel(("Shared clipboard: failed to construct the X11 window for the shared clipboard manager.\n"));
     762            LogRel(("Shared clipboard: Failed to construct the X11 window for the shared clipboard manager.\n"));
    763763            rc = VERR_NO_MEMORY;
    764764        }
     
    793793            rc = RTErrConvertFromErrno(errno);
    794794        if (RT_FAILURE(rc))
    795             LogRel(("Shared clipboard: failed to setup the termination mechanism.\n"));
     795            LogRel(("Shared clipboard: Failed to setup the termination mechanism.\n"));
    796796    }
    797797    else
     
    800800        clipUninit(pCtx);
    801801    if (RT_FAILURE(rc))
    802         LogRel(("Shared clipboard: initialisation failed: %Rrc\n", rc));
     802        LogRel(("Shared clipboard: Initialisation failed: %Rrc\n", rc));
    803803    return rc;
    804804}
     
    829829    pCtx->fHaveX11 = true;
    830830
    831     LogRel(("Initializing X11 clipboard backend\n"));
     831    LogRel(("Shared clipboard: Initializing X11 clipboard backend\n"));
    832832    if (pCtx)
    833833        pCtx->pFrontend = pFrontend;
     
    880880        if (RT_FAILURE(rc))
    881881        {
    882             LogRel(("Failed to start the shared clipboard thread.\n"));
     882            LogRel(("Shared clipboard: Failed to start the shared clipboard thread.\n"));
    883883            clipUninit(pCtx);
    884884        }
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette