* src/LaTeXFeatures.cpp:

- fix definition of \lyxadded and \lyxdeleted

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18301 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2007-05-14 06:28:47 +00:00
parent eb96bab927
commit c0b5b39246

View File

@ -653,8 +653,8 @@ string const LaTeXFeatures::getMacros() const
macros << "\\providecolor{lyxdeleted}{rgb}{"
<< cdel.r/255 << ',' << cdel.g/255 << ',' << cdel.b/255 << "}\n";
macros << "\\newcommand{\\lyxadded}[3]{\\textcolor{lyxadded}{#3}}\n"
<< "\\newcommand{\\lyxdeleted}[3]{\\textcolor{lyxdeleted}{\\st{#3}}}\n";
macros << "\\newcommand{\\lyxadded}[3]{\\color{lyxadded}{#3}}\n"
<< "\\newcommand{\\lyxdeleted}[3]{\\color{lyxdeleted}{\\st{#3}}}\n";
}
if (mustProvide("ct-none")) {
macros << changetracking_none_def;