Clarify some comments.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32780 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2010-01-05 21:09:22 +00:00
parent 0fd5b1d43f
commit 2177259e39

View File

@ -108,16 +108,19 @@ private:
void newFunc(FuncCode, std::string const & name, unsigned int attrib, FuncType type);
/**
* This is a list of all the LyXFunc names with the
* coresponding action number. It is usually only used by the
* minibuffer or when assigning commands to keys during init.
* This maps LyX function names to function codes, e.g.:
* lyx_func_map["ert-insert"] == LFUN_ERT_INSERT
*/
FuncMap lyx_func_map;
/**
* This is a mapping from action number to an object holding
* info about this action. f.ex. command name (string),
* command attributes (ro)
* This maps function codes to objects holding info about the corresponding
* action. E.g., if
* FuncInfo const & ert = lyx_info_map[LFUN_ERT_INSERT];
* then:
* ert.name == "ert-insert"'
* ert.attrib == Noop
* ert.type == Edit
*/
InfoMap lyx_info_map;
};