X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FMathParser.h;h=5be3b10275ee3e7816858141d4342e735898c6c5;hb=a746aa52146257c0e7a2d60123f63dccad5b2751;hp=bf174f1643507c4b61e0c38065c4599bb01f76b3;hpb=39e79d8602920eefe36e898c9f415afb979521b2;p=lyx.git diff --git a/src/mathed/MathParser.h b/src/mathed/MathParser.h index bf174f1643..5be3b10275 100644 --- a/src/mathed/MathParser.h +++ b/src/mathed/MathParser.h @@ -23,7 +23,7 @@ namespace lyx { class MathAtom; -class MathArray; +class MathData; class InsetMathGrid; class Lexer; @@ -69,10 +69,10 @@ bool mathed_parse_normal(MathAtom &, Lexer &); void mathed_parse_normal(InsetMathGrid &, docstring const &); /// parse a single cell from a string -void mathed_parse_cell(MathArray & ar, docstring const &); +void mathed_parse_cell(MathData & ar, docstring const &); /// parse a single cell from a stream. Only use this for reading from .lyx /// file format, for the reason see Parser::tokenize(std::istream &). -void mathed_parse_cell(MathArray & ar, std::istream &); +void mathed_parse_cell(MathData & ar, std::istream &); void initParser();