VirtualBox

Changeset 71019 in vbox


Ignore:
Timestamp:
Feb 14, 2018 7:17:47 PM (7 years ago)
Author:
vboxsync
Message:

FE/Qt bugref:6699 Fix Win builds

Location:
trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/guestctrl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/guestctrl/UIGuestControlConsole.cpp

    r70988 r71019  
    118118                if(!m_tCommandHistory.contains(strCommand))
    119119                    m_tCommandHistory.push_back(strCommand);
    120                 m_uCommandHistoryIndex = m_tCommandHistory.size();
     120                m_uCommandHistoryIndex = m_tCommandHistory.size()-1;
    121121                moveCursor(QTextCursor::End);
    122122                QPlainTextEdit::keyPressEvent(pEvent);
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/guestctrl/UIGuestControlInterface.cpp

    r71017 r71019  
    4848#define GCTLCMD_COMMON_OPT_SESSION_NAME     995 /**< The --sessionname option number. */
    4949#define GCTLCMD_COMMON_OPT_SESSION_ID       994 /**< The --sessionid option number. */
     50
     51#define GCTLCMD_COMMON_OPTION_DEFS() \
     52        { "--username",             GCTLCMD_COMMON_OPT_USER,            RTGETOPT_REQ_STRING  }, \
     53        { "--passwordfile",         GCTLCMD_COMMON_OPT_PASSWORD_FILE,   RTGETOPT_REQ_STRING  }, \
     54        { "--password",             GCTLCMD_COMMON_OPT_PASSWORD,        RTGETOPT_REQ_STRING  }, \
     55        { "--domain",               GCTLCMD_COMMON_OPT_DOMAIN,          RTGETOPT_REQ_STRING  }, \
     56        { "--quiet",                'q',                                RTGETOPT_REQ_NOTHING }, \
     57        { "--verbose",              'v',                                RTGETOPT_REQ_NOTHING },
     58
     59
    5060/** Common option definitions. */
    5161class CommandData
     
    241251        { "--quiet",                'q',                                RTGETOPT_REQ_NOTHING },
    242252        { "--verbose",              'v',                                RTGETOPT_REQ_NOTHING },
    243         { "--help",                 'h',                                RTGETOPT_REQ_NOTHING }
    244253    };
    245254
     
    303312    RTGetOptArgvFromString(&argv, &argc, array.data(), RTGETOPTARGV_CNV_QUOTE_BOURNE_SH, 0);
    304313
    305     static const RTGETOPTDEF s_aOptions[] = {};
     314    static const RTGETOPTDEF s_aOptions[] =
     315    {
     316        GCTLCMD_COMMON_OPTION_DEFS()
     317    };
    306318
    307319    int ch;
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