]> git.lyx.org Git - lyx.git/blobdiff - src/Text.cpp
adjust comment.
[lyx.git] / src / Text.cpp
index 7f1861efb2e35649797c38ae95c6f568a4a4f116..8054b98617aaea78fb175f4f326f1423580dc3c8 100644 (file)
@@ -188,6 +188,15 @@ void readParToken(Buffer const & buf, Paragraph & par, Lexer & lex,
                else
                        lex.printError("Unknown bar font flag "
                                       "`$$Token'");
+       } else if (token == "\\strikeout") {
+               lex.next();
+               font.fontInfo().setStrikeout(font.setLyXMisc(lex.getString()));
+       } else if (token == "\\uuline") {
+               lex.next();
+               font.fontInfo().setUuline(font.setLyXMisc(lex.getString()));
+       } else if (token == "\\uwave") {
+               lex.next();
+               font.fontInfo().setUwave(font.setLyXMisc(lex.getString()));
        } else if (token == "\\noun") {
                lex.next();
                font.fontInfo().setNoun(font.setLyXMisc(lex.getString()));