mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 13:31:49 +00:00
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:
parent
61dda8035d
commit
dc7a53aeb4
@ -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$
|
||||||
|
|
||||||
|
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user