]> git.lyx.org Git - features.git/blobdiff - src/mathed/math_cursor.C
rename MathBigopInset into MathSymbolInset. That's what it is nowadays...
[features.git] / src / mathed / math_cursor.C
index cfebdbaf5fa9efcbe9c3638e2d5e9e45d6082db4..9b33d79b6fe42b43211372a25ca3eb4e42897b45 100644 (file)
@@ -30,7 +30,7 @@
 #include "formulabase.h"
 #include "math_cursor.h"
 #include "math_arrayinset.h"
-#include "math_bigopinset.h"
+#include "math_symbolinset.h"
 #include "math_decorationinset.h"
 #include "math_deliminset.h"
 #include "math_dotsinset.h"
@@ -668,7 +668,7 @@ void MathCursor::interpret(string const & s)
                        case LM_TK_SYM: 
                        case LM_TK_BIGSYM: 
                        case LM_TK_FUNCLIM:
-                               p = new MathBigopInset(l);
+                               p = new MathSymbolInset(l);
                                break;
 
                        case LM_TK_STACK:
@@ -712,7 +712,7 @@ void MathCursor::interpret(string const & s)
                insert(p);
                if (p->nargs()) {
                        plainLeft();
-                       right();  // do not push for e.g. MathBigopInset
+                       right();  // do not push for e.g. MathSymbolInset
                        if (oldsel) 
                                selPaste();
                }