mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-05 13:26:21 +00:00
Fix return value of InsetText::plaintext
* src/insets/insetnote.C (InsetNote::plaintext): Move line counting code from here ... * src/insets/insettext.C (InsetText::plaintext): ... here. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14957 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
d929950da4
commit
9b5a63aaaf
@ -333,15 +333,12 @@ int InsetNote::plaintext(Buffer const & buf, std::ostream & os,
|
||||
// Ignore files that are exported inside a comment
|
||||
runparams.exportdata.reset(new ExportData);
|
||||
}
|
||||
ostringstream ss;
|
||||
ss << "[";
|
||||
InsetText::plaintext(buf, ss, runparams);
|
||||
ss << "]";
|
||||
os << "[";
|
||||
int const nlines = InsetText::plaintext(buf, os, runparams);
|
||||
os << "]";
|
||||
|
||||
string const str = ss.str();
|
||||
os << str;
|
||||
// Return how many newlines we issued.
|
||||
return int(lyx::count(str.begin(), str.end(),'\n'));
|
||||
return nlines;
|
||||
}
|
||||
|
||||
|
||||
|
@ -294,11 +294,14 @@ int InsetText::plaintext(Buffer const & buf, ostream & os,
|
||||
ParagraphList::const_iterator end = paragraphs().end();
|
||||
ParagraphList::const_iterator it = beg;
|
||||
bool ref_printed = false;
|
||||
std::ostringstream oss;
|
||||
for (; it != end; ++it)
|
||||
asciiParagraph(buf, *it, os, runparams, ref_printed);
|
||||
asciiParagraph(buf, *it, oss, runparams, ref_printed);
|
||||
|
||||
// FIXME: Give the total numbers of lines
|
||||
return 1;
|
||||
string const str = oss.str();
|
||||
os << str;
|
||||
// Return how many newlines we issued.
|
||||
return int(lyx::count(str.begin(), str.end(), '\n'));
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user