]> git.lyx.org Git - lyx.git/blobdiff - src/Cursor.cpp
* fix crashing special menu items on Mac after preferences have been changed.
[lyx.git] / src / Cursor.cpp
index a51c98b8b4c6c2d8c945cb5b7507790ac0e7b97a..38ce314f68ae5dba3f2155d19bb41c7d6c63f837 100644 (file)
@@ -1242,10 +1242,10 @@ void Cursor::insert(Inset * inset0)
 }
 
 
-void Cursor::niceInsert(docstring const & t)
+void Cursor::niceInsert(docstring const & t, Parse::flags f)
 {
        MathData ar;
-       asArray(t, ar);
+       asArray(t, ar, f);
        if (ar.size() == 1)
                niceInsert(ar[0]);
        else