mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-22 16:37:28 +00:00
* 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:
parent
91ea3b5438
commit
9e5a37c7d0
@ -196,7 +196,7 @@ void asciiParagraph(Buffer const & buf,
|
|||||||
string word;
|
string word;
|
||||||
|
|
||||||
for (pos_type i = 0; i < par.size(); ++i) {
|
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) {
|
switch (c) {
|
||||||
case Paragraph::META_INSET: {
|
case Paragraph::META_INSET: {
|
||||||
InsetBase const * inset = par.getInset(i);
|
InsetBase const * inset = par.getInset(i);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user