]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_scriptinset.C
bug + spped fixes + small stuff
[lyx.git] / src / mathed / math_scriptinset.C
index 8d46fe151f7ef90b4cca696c3fc74c667e4a8c39..6e6f75514109c6cfb71e642ab773f3c46b4f61aa 100644 (file)
@@ -514,8 +514,10 @@ void MathScriptInset::notifyCursorLeaves(idx_type idx)
 
 
 DispatchResult
-MathScriptInset::priv_dispatch(LCursor & bv, FuncRequest const & cmd)
+MathScriptInset::priv_dispatch(LCursor & cur, FuncRequest const & cmd)
 {
+       lyxerr << "MathScriptInset: request: " << cmd << std::endl;
+
        if (cmd.action == LFUN_MATH_LIMITS) {
                if (!cmd.argument.empty()) {
                        if (cmd.argument == "limits")
@@ -531,5 +533,5 @@ MathScriptInset::priv_dispatch(LCursor & bv, FuncRequest const & cmd)
                return DispatchResult(true, true);
        }
 
-       return MathNestInset::priv_dispatch(bv, cmd);
+       return MathNestInset::priv_dispatch(cur, cmd);
 }