Quantcast
Channel: wxWidgets: Ticket Query
Viewing all articles
Browse latest Browse all 66

#11351: found undocumented functions in class wxAcceleratorEntry of wxWidgets 2.8.10

$
0
0

Hello,

the following functions are not documented in the current stable release documentation:

class wxAcceleratorEntry
{
...
    bool IsOk() const
    {
        return m_flags != 0 &&
               m_keyCode != 0;
    }
    // string <-> wxAcceleratorEntry conversion
    // ----------------------------------------
    // returns a wxString for the this accelerator.
    // this function formats it using the <flags>-<keycode> format
    // where <flags> maybe a hyphen-separed list of "shift|alt|ctrl"
    wxString ToString() const;
    // returns true if the given string correctly initialized this object
    // (i.e. if IsOk() returns true after this call)
    bool FromString(const wxString& str);
...
}

Best regards

Martin


Viewing all articles
Browse latest Browse all 66

Trending Articles