* src/output_plaintext.C

(asciiParagraph): fix constant overflow


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14679 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Georg Baum 2006-08-14 19:46:36 +00:00
parent 91ea3b5438
commit 9e5a37c7d0

View File

@ -196,7 +196,7 @@ void asciiParagraph(Buffer const & buf,
string word;
for (pos_type i = 0; i < par.size(); ++i) {
char c = par.getUChar(buf.params(), i);
lyx::char_type c = par.getUChar(buf.params(), i);
switch (c) {
case Paragraph::META_INSET: {
InsetBase const * inset = par.getInset(i);