Changeset 55180 in vbox for trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnD.cpp
- Timestamp:
- Apr 10, 2015 10:29:54 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnD.cpp
r55091 r55180 1 1 /* $Id$ */ 2 2 /** @file 3 * VBoxDnD.cpp - Windows-specific bits of the drag 'ndrop service.3 * VBoxDnD.cpp - Windows-specific bits of the drag and drop service. 4 4 */ 5 5 … … 413 413 hide(); 414 414 415 LogFlowThisFunc(("Starting drag 'ndrop: uAllActions=0x%x, dwOKEffects=0x%x ...\n",415 LogFlowThisFunc(("Starting drag and drop: uAllActions=0x%x, dwOKEffects=0x%x ...\n", 416 416 uAllActions, startupInfo.dwOKEffects)); 417 417 … … 433 433 434 434 default: 435 LogFlowThisFunc(("Drag 'ndrop failed with %Rhrc\n", hr));435 LogFlowThisFunc(("Drag and drop failed with %Rhrc\n", hr)); 436 436 mState = Canceled; 437 437 rc = VERR_GENERAL_FAILURE; /** @todo Find a better status code. */ … … 778 778 */ 779 779 if (!this->lstFormats.size()) 780 LogRel(("DnD: Warning: No supported drag 'ndrop formats on the guest found!\n"));780 LogRel(("DnD: Warning: No supported drag and drop formats on the guest found!\n")); 781 781 782 782 /* … … 874 874 875 875 LogFlowThisFunc(("mMode=%ld, mState=%RU32\n", mMode, mState)); 876 LogRel(("DnD: Drag 'ndrop operation aborted\n"));876 LogRel(("DnD: Drag and drop operation aborted\n")); 877 877 878 878 reset(); … … 881 881 882 882 /* Post ESC to our window to officially abort the 883 * drag 'ndrop operation. */883 * drag and drop operation. */ 884 884 PostMessage(hWnd, WM_KEYDOWN, VK_ESCAPE, 0 /* lParam */); 885 885 … … 1130 1130 1131 1131 /** @todo Add some i18l tr() macros here. */ 1132 RTStrPrintf(szTitle, sizeof(szTitle), "VirtualBox Guest Additions Drag 'nDrop");1133 RTStrPrintf(szMsg, sizeof(szMsg), "Drag 'ndrop to the host either is not supported or disabled. "1134 "Please enable Guest to Host or Bidirectional drag 'ndrop mode "1132 RTStrPrintf(szTitle, sizeof(szTitle), "VirtualBox Guest Additions Drag and Drop"); 1133 RTStrPrintf(szMsg, sizeof(szMsg), "Drag and drop to the host either is not supported or disabled. " 1134 "Please enable Guest to Host or Bidirectional drag and drop mode " 1135 1135 "or re-install the VirtualBox Guest Additions."); 1136 1136 switch (rc) … … 1498 1498 1499 1499 /** 1500 * Initializes drag 'ndrop.1500 * Initializes drag and drop. 1501 1501 * 1502 1502 * @return IPRT status code. … … 1529 1529 if (!fSupportedOS) 1530 1530 { 1531 LogRel(("DnD: Not supported Windows version, disabling drag 'ndrop support\n"));1531 LogRel(("DnD: Not supported Windows version, disabling drag and drop support\n")); 1532 1532 rc = VERR_NOT_SUPPORTED; 1533 1533 } … … 1565 1565 *pfStartThread = true; 1566 1566 1567 LogRel(("DnD: Drag 'ndrop service successfully started\n"));1567 LogRel(("DnD: Drag and drop service successfully started\n")); 1568 1568 return VINF_SUCCESS; 1569 1569 } 1570 1570 1571 LogRel(("DnD: Initializing drag 'ndrop service failed with rc=%Rrc\n", rc));1571 LogRel(("DnD: Initializing drag and drop service failed with rc=%Rrc\n", rc)); 1572 1572 return rc; 1573 1573 }
Note:
See TracChangeset
for help on using the changeset viewer.