mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +00:00
A stringstream is overkill here
This commit is contained in:
parent
50a77ab2d1
commit
e066dd6bd9
@ -1585,13 +1585,12 @@ bool Buffer::makeLaTeXFile(FileName const & fname,
|
||||
writeLaTeXSource(os, original_path, runparams, output);
|
||||
}
|
||||
catch (EncodingException const & e) {
|
||||
odocstringstream ods;
|
||||
ods.put(e.failed_char);
|
||||
docstring const failed(1, e.failed_char);
|
||||
ostringstream oss;
|
||||
oss << "0x" << hex << e.failed_char << dec;
|
||||
docstring msg = bformat(_("Could not find LaTeX command for character '%1$s'"
|
||||
" (code point %2$s)"),
|
||||
ods.str(), from_utf8(oss.str()));
|
||||
failed, from_utf8(oss.str()));
|
||||
errorList.push_back(ErrorItem(msg, _("Some characters of your document are probably not "
|
||||
"representable in the chosen encoding.\n"
|
||||
"Changing the document encoding to utf8 could help."),
|
||||
|
Loading…
Reference in New Issue
Block a user