VirtualBox

Changeset 45190 in vbox for trunk/src/VBox/Frontends


Ignore:
Timestamp:
Mar 26, 2013 10:59:17 AM (12 years ago)
Author:
vboxsync
Message:

VBoxManage: one more check for 'controlvm'; removed long obsolete 'gueststatisticsinterval' help

Location:
trunk/src/VBox/Frontends/VBoxManage
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageControlVM.cpp

    r45158 r45190  
    284284        else if (!strcmp(a->argv[1], "keyboardputscancode"))
    285285        {
    286             ComPtr<IKeyboard> keyboard;
    287             CHECK_ERROR_BREAK(console, COMGETTER(Keyboard)(keyboard.asOutParam()));
     286            ComPtr<IKeyboard> pKeyboard;
     287            CHECK_ERROR_BREAK(console, COMGETTER(Keyboard)(pKeyboard.asOutParam()));
     288            if (!pKeyboard)
     289            {
     290                RTMsgError("Guest not running");
     291                rc = E_FAIL;
     292                break;
     293            }
    288294
    289295            if (a->argc <= 1 + 1)
     
    329335            com::SafeArray<LONG> saScancodes(llScancodes);
    330336            ULONG codesStored = 0;
    331             CHECK_ERROR_BREAK(keyboard, PutScancodes(ComSafeArrayAsInParam(saScancodes),
     337            CHECK_ERROR_BREAK(pKeyboard, PutScancodes(ComSafeArrayAsInParam(saScancodes),
    332338                                                     &codesStored));
    333339            if (codesStored < saScancodes.size())
     
    10031009            if (!pDisplay)
    10041010            {
    1005                 RTMsgError("Cannot send a video mode hint without a display");
     1011                RTMsgError("Guest not running");
    10061012                rc = E_FAIL;
    10071013                break;
     
    13101316            if (!pDisplay)
    13111317            {
    1312                 RTMsgError("Cannot take a screenshot without a display");
     1318                RTMsgError("Guest not running");
    13131319                rc = E_FAIL;
    13141320                break;
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp

    r45022 r45190  
    268268#endif
    269269                     "                            [--guestmemoryballoon <balloonsize in MB>]\n"
    270                      "                            [--gueststatisticsinterval <seconds>]\n"
    271270                     "                            [--audio none|null", SEP);
    272271        if (fWin)
     
    446445                     "                            natpf<1-N> delete <rulename> |\n"
    447446                     "                            guestmemoryballoon <balloonsize in MB> |\n"
    448                      "                            gueststatisticsinterval <seconds> |\n"
    449447                     "                            usbattach <uuid>|<address> |\n"
    450448                     "                            usbdetach <uuid>|<address> |\n"
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