tex2lyx/text.cpp: fix 2 typos

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@40012 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Uwe Stöhr 2011-10-26 13:37:32 +00:00
parent 61dda8035d
commit dc7a53aeb4
2 changed files with 4 additions and 4 deletions

View File

@ -323,9 +323,9 @@ test
test\phantom{Wow}test test\phantom{Wow}test
test\phantom{\textcolor{green}{W}\textbf{ow}\textsuperscript{Wow}}test test\hphantom{\textcolor{green}{W}\textbf{ow}\textsuperscript{Wow}}test
test\phantom{Wow\textbackslash{}\&\%}test test\vphantom{Wow\textbackslash{}\&\%}test
$test\hphantom{Wow}test$ $test\hphantom{Wow}test$

View File

@ -2471,9 +2471,9 @@ void parse_text(Parser & p, ostream & os, unsigned flags, bool outer,
if (t.cs() == "phantom") if (t.cs() == "phantom")
begin_inset(os, "Phantom Phantom\n"); begin_inset(os, "Phantom Phantom\n");
if (t.cs() == "hphantom") if (t.cs() == "hphantom")
begin_inset(os, "Phantom Hhantom\n"); begin_inset(os, "Phantom HPhantom\n");
if (t.cs() == "vphantom") if (t.cs() == "vphantom")
begin_inset(os, "Phantom Vhantom\n"); begin_inset(os, "Phantom VPhantom\n");
os << "status open\n"; os << "status open\n";
parse_text_in_inset(p, os, FLAG_ITEM, outer, context); parse_text_in_inset(p, os, FLAG_ITEM, outer, context);
end_inset(os); end_inset(os);