X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffactory.cpp;h=4f6cb089a8518fec998e838c1e0dc6d55e5831d0;hb=24fe5b08c0e1dfb739738acb6fc995da7315d35f;hp=eba16dcc30bf7782fa4838363e8c1032b6feba0f;hpb=4bc7feaa96bb6a810464c41f1da9bb3d7f906580;p=lyx.git diff --git a/src/factory.cpp b/src/factory.cpp index eba16dcc30..4f6cb089a8 100644 --- a/src/factory.cpp +++ b/src/factory.cpp @@ -495,7 +495,7 @@ Inset * readInset(Lexer & lex, Buffer const & buf) // can be translated to inset codes using insetCode(). And the insets' // write() routines should use insetName() rather than hardcoding it. if (tmptok == "Quotes") { - inset.reset(new InsetQuotes); + inset.reset(new InsetQuotes(buf)); } else if (tmptok == "External") { inset.reset(new InsetExternal(const_cast(buf))); } else if (tmptok == "FormulaMacro") {