]> git.lyx.org Git - features.git/blobdiff - src/mathed/math_macrotemplate.C
Small bugfixes and cosmetic changes
[features.git] / src / mathed / math_macrotemplate.C
index 2b7c3ffde42f1821d4dff464821d8216fa43d8e5..5277073473168a29dde36a29b321ee3714580363 100644 (file)
 
 
 MathMacroTemplate::MathMacroTemplate() :
-       MathInset("undefined", LM_OT_MACRO, 1), numargs_(0), users_()
+       MathInset(1, "undefined", LM_OT_MACRO), numargs_(0), users_()
 {}
 
 
 MathMacroTemplate::MathMacroTemplate(string const & nm, int numargs) :
-       MathInset(nm, LM_OT_MACRO, 1), numargs_(numargs), users_()
+       MathInset(1, nm, LM_OT_MACRO), numargs_(numargs), users_()
 {}