]> git.lyx.org Git - lyx.git/commitdiff
Clarify some comments.
authorRichard Heck <rgheck@comcast.net>
Tue, 5 Jan 2010 21:09:22 +0000 (21:09 +0000)
committerRichard Heck <rgheck@comcast.net>
Tue, 5 Jan 2010 21:09:22 +0000 (21:09 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32780 a592a061-630c-0410-9148-cb99ea01b6c8

src/LyXAction.h

index f818b8f2064b4ccde1d8f71b69b26073bab336d4..2f718ff722edfa3971ec7e2f8bf2d20a030e4378 100644 (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;
 };