Changeset 54807 in vbox
- Timestamp:
- Mar 17, 2015 11:13:01 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/SharedClipboard/x11-clipboard.cpp
r48598 r54807 623 623 static int clipEventThread(RTTHREAD self, void *pvUser) 624 624 { 625 LogRel(("Shared clipboard: starting shared clipboard thread\n"));625 LogRel(("Shared clipboard: Starting shared clipboard thread\n")); 626 626 627 627 CLIPBACKEND *pCtx = (CLIPBACKEND *)pvUser; … … 634 634 XtAppProcessEvent(pCtx->appContext, XtIMAll); 635 635 } 636 LogRel(("Shared clipboard: shared clipboard thread terminated successfully\n"));636 LogRel(("Shared clipboard: Shared clipboard thread terminated successfully\n")); 637 637 return VINF_SUCCESS; 638 638 } … … 741 741 if (NULL == pDisplay) 742 742 { 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")); 744 744 rc = VERR_NOT_SUPPORTED; 745 745 } … … 749 749 rc = clipLoadXFixes(pDisplay, pCtx); 750 750 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")); 752 752 } 753 753 #endif … … 760 760 if (NULL == pCtx->widget) 761 761 { 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")); 763 763 rc = VERR_NO_MEMORY; 764 764 } … … 793 793 rc = RTErrConvertFromErrno(errno); 794 794 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")); 796 796 } 797 797 else … … 800 800 clipUninit(pCtx); 801 801 if (RT_FAILURE(rc)) 802 LogRel(("Shared clipboard: initialisation failed: %Rrc\n", rc));802 LogRel(("Shared clipboard: Initialisation failed: %Rrc\n", rc)); 803 803 return rc; 804 804 } … … 829 829 pCtx->fHaveX11 = true; 830 830 831 LogRel((" Initializing X11 clipboard backend\n"));831 LogRel(("Shared clipboard: Initializing X11 clipboard backend\n")); 832 832 if (pCtx) 833 833 pCtx->pFrontend = pFrontend; … … 880 880 if (RT_FAILURE(rc)) 881 881 { 882 LogRel((" Failed to start the shared clipboard thread.\n"));882 LogRel(("Shared clipboard: Failed to start the shared clipboard thread.\n")); 883 883 clipUninit(pCtx); 884 884 }
Note:
See TracChangeset
for help on using the changeset viewer.