From: Richard Heck Date: Sat, 4 Aug 2012 21:32:55 +0000 (-0400) Subject: Backport fix for bug #8278. X-Git-Tag: 2.0.5~67^2~10 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=743801ff716cbe6758d3975932d83b41ce3d8100;p=features.git Backport fix for bug #8278. Cherry picked from 2375982f7e7fa291ae5ce3adfa9271cba0d31809 166deba79b9699cae10c605f8c08af4b159a744b --- diff --git a/src/Paragraph.cpp b/src/Paragraph.cpp index 7bb585905a..0d6dd23015 100644 --- a/src/Paragraph.cpp +++ b/src/Paragraph.cpp @@ -2792,7 +2792,7 @@ docstring Paragraph::simpleLyXHTMLOnePar(Buffer const & buf, retval += inset->xhtml(xs, np); } } else { - char_type c = d->text_[i]; + char_type c = getUChar(buf.params(), i); if (style.pass_thru) xs << c;