﻿id,summary,reporter,owner,description,type,status,component,version,resolution,keywords,cc,guest,host
13983,"Documentation Says ""SaveState"" in MachineShortcuts for Save State and Exit, should be ""Save""",tim 2001,,"In the section on Host Key customization in the docs (9.19.7), it says a shortcut for Save State is set using a ""SaveState=<shortcut>"" value for GUI/Input/MachineShortcuts, but per the source (at VirtualBox 4.3.18 in UIActionPoolRuntime.cpp) the string should be ""Save=<shortcut>"".

{{{
class UIActionSimplePerformSave : public UIActionSimple
{
    Q_OBJECT;

public:

    UIActionSimplePerformSave(UIActionPool *pParent)
        : UIActionSimple(pParent, "":/vm_save_state_16px.png"", "":/vm_save_state_disabled_16px.png"")
    {
        retranslateUi();
    }

protected:

    QString shortcutExtraDataID() const
    {
        return QString(""Save"");   <<--- This is string matched for MachineShortcuts
    }

    void retranslateUi()
    {
        setName(QApplication::translate(""UIActionPool"", ""Save State""));
        setStatusTip(QApplication::translate(""UIActionPool"", ""Save the machine state of the virtual m`
achine""));
    }
};
}}}
",defect,closed,documentation,VirtualBox 4.3.18,fixed,SaveState Save State Exit,,all,all
