]> git.lyx.org Git - lyx.git/blobdiff - src/LyXAction.cpp
Remove unneeded std::.
[lyx.git] / src / LyXAction.cpp
index d975eb5c5baf9b0a1201d8a0daf69f788aeaf69b..8e5a6c6c80b46ea1bd41abc9eeec8691e0d55769 100644 (file)
@@ -2373,6 +2373,14 @@ void LyXAction::init()
  * \endvar
  */
                { LFUN_ALL_INSETS_TOGGLE, "all-insets-toggle", ReadOnly, Edit },
+/*!
+ * \var lyx::FuncCode lyx::LFUN_GRAPHICS_RELOAD
+ * \li Action: Reloads the image if necessary.
+ * \li Syntax: graphics-reload
+ * \li Origin: vfr, 10 Aug 2009
+ * \endvar
+ */
+               { LFUN_GRAPHICS_RELOAD, "graphics-reload", ReadOnly | AtPoint, Edit },
 /*!
  * \var lyx::FuncCode lyx::LFUN_SET_GRAPHICS_GROUP
  * \li Action: Set the group for the graphics inset on the cursor position.
@@ -3220,6 +3228,19 @@ void LyXAction::init()
  * \endvar
  */
                { LFUN_MESSAGE, "message", NoBuffer, System },
+/*!
+ * \var lyx::FuncCode lyx::LFUN_DEBUG_LEVEL_SET
+ * \li Action: Set debug output level.
+ * \li Syntax: debug-level-set <LEVEL>
+ * \li Params: <LEVEL>: comma separated list of levels or the correspondent number
+                        of their combination. 0 is equivalent to disabling all debug
+                       events. See lyx -dbg for the current list of debug levels
+                       and their numbers.
+ * \li Origin: sanda, 28 Dec 2009
+ * \endvar
+ */
+               { LFUN_DEBUG_LEVEL_SET, "debug-level-set", NoBuffer, System },
+
 /*!
  * \var lyx::FuncCode lyx::LFUN_PREFERENCES_SAVE
  * \li Action: Save user preferences.
@@ -3424,36 +3445,6 @@ void LyXAction::init()
  */
                { LFUN_SECTION_SELECT, "section-select", ReadOnly, Edit },
 
-/*!
- * \var lyx::FuncCode lyx::LFUN_GRAPHICS_RELOAD
- * \li Action: Reloads the image if necessary.
- * \li Syntax: graphics-reload
- * \li Origin: vfr, 10 Aug 2009
- * \endvar
- */
-               { LFUN_GRAPHICS_RELOAD, "graphics-reload", ReadOnly | AtPoint, Edit },
-
-
-/*!
- * \var lyx::FuncCode lyx::LFUN_INSET_FORALL
-
- * \li Action: Apply the given commands on insets of a given name. WARNING: use
-               at your own risks; this function gives you too many ways of
-              shooting yourself in the foot. A typical example is
-                   inset-forall Note note-insert
-               which starts an infinite loop. This is mitigated by the fact 
-               that the number of actions is arbitrarily limited to 1000.
- * \li Syntax: inset-forall <NAME> <LFUN-COMMAND>
-               If <NAME> is *, all insets are matched.
- * \li Sample: The name is used like for InsetLayout in layout files: "Note" 
-               matches all note insets, while "Note:Note" only matches LyX 
-              yellow note insets. The following command closes all note insets
-                   inset-forall Note inset-toggle close
- * \li Origin: lasgouttes, 27 Nov 2009
- * \endvar
- */
-               { LFUN_INSET_FORALL, "inset-forall", ReadOnly, Edit },
-
 
                { LFUN_NOACTION, "", Noop, Hidden }
 #ifndef DOXYGEN_SHOULD_SKIP_THIS