X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fformulamacro.h;h=486b16ae068fa7a5ae20dc1987547b89158dce8c;hb=8dccec5c46a1689fe3ea37144252e952771e1e1c;hp=3763752daebfb4e1f772f78ca02191ccbd309604;hpb=65b49997597efd5a5ba920c739ba6cd8384e1eeb;p=lyx.git diff --git a/src/mathed/formulamacro.h b/src/mathed/formulamacro.h index 3763752dae..486b16ae06 100644 --- a/src/mathed/formulamacro.h +++ b/src/mathed/formulamacro.h @@ -46,9 +46,9 @@ public: /// void Read(LyXLex & lex); /// - void Write(FILE * file); + void Write(ostream & os); /// - int Latex(FILE * file, signed char fragile); + int Latex(ostream & os, signed char fragile); /// int Latex(string & file, signed char fragile); /// @@ -59,23 +59,23 @@ public: Inset * Clone() const; /// what appears in the minibuffer when opening - char const * EditMessage() {return "Math macro editor mode";} + char const * EditMessage() const {return _("Math macro editor mode");} /// void Edit(int x, int y); /// void InsetUnlock(); - + /// bool LocalDispatch(int, char const *); - protected: + /// void UpdateLocal(); private: + /// bool opened; - string name; - class MathMacroTemplate * tmacro; - + /// + string name; + /// + MathMacroTemplate * tmacro; }; - #endif -