git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@39681 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2011-09-15 21:48:23 +00:00
parent 3788b960f8
commit c239ac6590

View File

@ -1644,7 +1644,7 @@ void Buffer::writeLyXHTMLSource(odocstream & os,
}
bool const needfg = params().fontcolor != RGBColor(0, 0, 0);
bool const needbg = params().backgroundcolor != RGBColor(OxFF, OxFF, OxFF);
bool const needbg = params().backgroundcolor != RGBColor(0xFF, 0xFF, 0xFF);
if (needfg || needbg) {
os << "<style type='text/css'>\nbody {\n";
if (needfg)