]> git.lyx.org Git - lyx.git/blobdiff - src/LyXAction.C
remove almost all traces of old table
[lyx.git] / src / LyXAction.C
index 685cd8599ca534af3d9194e93a3b39a34465acb0..5347503888a9402b89b2539ca99cab168070fe9e 100644 (file)
 #include "gettext.h"
 #include "support/lstrings.h"
 #if 1
-// only to get access to NEW_INSETS and NEW_TABULAR
+// only to get access to NEW_INSETS
 #include "lyxparagraph.h"
 #endif
+#if 1
+// only to get access to NEW_EXPORT
+#include "exporter.h"
+#endif
+
 
 using std::ostream;
 using std::endl;
@@ -343,6 +348,8 @@ void LyXAction::init()
                  N_("Go one paragraph down"), ReadOnly },
                { LFUN_DOWN_PARAGRAPHSEL, "paragraph-down-select",
                  N_("Select next paragraph"), ReadOnly },
+               { LFUN_GOTO_PARAGRAPH, "paragraph-goto", 
+                 N_("Go to paragraph"), ReadOnly },
                { LFUN_UP_PARAGRAPH, "paragraph-up",
                  N_("Go one paragraph up"), ReadOnly },
                { LFUN_UP_PARAGRAPHSEL, "paragraph-up-select",
@@ -362,7 +369,7 @@ void LyXAction::init()
                { LFUN_REDO, "redo", N_("Redo"), Noop },
                { LFUN_REF_BACK, "reference-back", "", ReadOnly },
                { LFUN_REF_GOTO, "reference-goto", "", ReadOnly },
-               { LFUN_REF_CREATE, "reference-insert",
+               { LFUN_REF_INSERT, "reference-insert",
                  N_("Insert cross reference"), ReadOnly },
                { LFUN_NEXT, "screen-down", "", ReadOnly },
                { LFUN_NEXTSEL, "screen-down-select", "", ReadOnly },
@@ -602,7 +609,7 @@ int LyXAction::getApproxFunc(string const & func) const
 }
 
 
-string LyXAction::getApproxFuncName(string const & func) const
+string const LyXAction::getApproxFuncName(string const & func) const
 {
        int f = getApproxFunc(func);
        // This will return empty string if f isn't an action.
@@ -610,7 +617,7 @@ string LyXAction::getApproxFuncName(string const & func) const
 }
 
 
-string LyXAction::getActionName(int action) const
+string const LyXAction::getActionName(int action) const
 {
        kb_action ac;
        string arg;
@@ -632,7 +639,7 @@ string LyXAction::getActionName(int action) const
 
 // Returns one line help associated with a (pseudo)action, i.e. appends
 // the argument of the action if necessary
-string LyXAction::helpText(int pseudoaction) const
+string const LyXAction::helpText(int pseudoaction) const
 {
        string help, arg;
        kb_action action;