From 225d92ba43473e05fd443e83141a6b8f976452ef Mon Sep 17 00:00:00 2001 From: Martin Vermeer Date: Thu, 1 Nov 2007 09:47:02 +0000 Subject: [PATCH] Fix tex2lyx for inset font inheritance changes git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21319 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/tex2lyx/Font.cpp | 2 +- src/tex2lyx/Font.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tex2lyx/Font.cpp b/src/tex2lyx/Font.cpp index 0f6f89fd07..24ee436ec2 100644 --- a/src/tex2lyx/Font.cpp +++ b/src/tex2lyx/Font.cpp @@ -27,7 +27,7 @@ FontInfo const inherit_font; /// All ignore font. FontInfo const ignore_font; -FontInfo lyxRead(Lexer & lex) +FontInfo lyxRead(Lexer & lex, FontInfo const &) { bool error = false; bool finished = false; diff --git a/src/tex2lyx/Font.h b/src/tex2lyx/Font.h index 13d84aba15..649c0d17a7 100644 --- a/src/tex2lyx/Font.h +++ b/src/tex2lyx/Font.h @@ -46,7 +46,7 @@ public: }; /// Read a font specification from Lexer. Used for layout files. -FontInfo lyxRead(Lexer &); +FontInfo lyxRead(Lexer &, FontInfo const & fi); } // namespace lyx