From 2177259e395eaf1a2c6252e815fac538bab6a015 Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Tue, 5 Jan 2010 21:09:22 +0000 Subject: [PATCH] Clarify some comments. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32780 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/LyXAction.h | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/LyXAction.h b/src/LyXAction.h index f818b8f206..2f718ff722 100644 --- a/src/LyXAction.h +++ b/src/LyXAction.h @@ -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; }; -- 2.39.2