Changeset 55180 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Apr 10, 2015 10:29:54 AM (10 years ago)
- Location:
- trunk/src/VBox/Frontends
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageControlVM.cpp
r54591 r55180 197 197 if (a->argc <= 1 + 1) 198 198 { 199 errorArgument("Missing argument to '%s'. Expected drag 'n'drop mode.", a->argv[1]);199 errorArgument("Missing argument to '%s'. Expected drag and drop mode.", a->argv[1]); 200 200 rc = E_FAIL; 201 201 break; -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp
r54911 r55180 1618 1618 } 1619 1619 1620 /* Drag 'n'drop */1620 /* Drag and drop */ 1621 1621 { 1622 1622 const char *psz = "Unknown"; … … 1657 1657 RTPrintf("draganddrop=\"%s\"\n", psz); 1658 1658 else 1659 RTPrintf("Drag 'n'drop Mode: %s\n", psz);1659 RTPrintf("Drag and drop Mode: %s\n", psz); 1660 1660 } 1661 1661 -
trunk/src/VBox/Frontends/VirtualBox/src/UIVMInfoDialog.cpp
r54505 r55180 671 671 strResult += formatValue(tr("VM Uptime"), strUptime, iMaxLength); 672 672 strResult += formatValue(tr("Clipboard Mode"), strClipboardMode, iMaxLength); 673 strResult += formatValue(tr("Drag 'n'Drop Mode"), strDnDMode, iMaxLength);673 strResult += formatValue(tr("Drag and Drop Mode"), strDnDMode, iMaxLength); 674 674 strResult += formatValue(VBoxGlobal::tr("VT-x/AMD-V", "details report"), strVirtualization, iMaxLength); 675 675 strResult += formatValue(VBoxGlobal::tr("Nested Paging", "details report"), strNestedPaging, iMaxLength); -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIActionPoolRuntime.cpp
r55170 r55180 1507 1507 void retranslateUi() 1508 1508 { 1509 setName(QApplication::translate("UIActionPool", "Drag 'n'Drop"));1509 setName(QApplication::translate("UIActionPool", "Drag and Drop")); 1510 1510 } 1511 1511 }; -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIDnDMIMEData.cpp
r52730 r55180 223 223 if (static_cast<QKeyEvent*>(pEvent)->key() == Qt::Key_Escape) 224 224 { 225 LogFlowFunc(("ESC pressed, cancelling drag 'ndrop operation\n"));225 LogFlowFunc(("ESC pressed, cancelling drag and drop operation\n")); 226 226 m_enmState = Canceled; 227 227 }
Note:
See TracChangeset
for help on using the changeset viewer.