mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-26 11:16:55 +00:00
Fix bug #6250: LyX 1.6.4 crashes when copying Japanese text in math to clipboard
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31572 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
5f982b8c83
commit
a7c944b280
@ -30,6 +30,7 @@
|
||||
#include "BufferParams.h"
|
||||
#include "BufferView.h"
|
||||
#include "CutAndPaste.h"
|
||||
#include "Encoding.h"
|
||||
#include "FuncStatus.h"
|
||||
#include "LaTeXFeatures.h"
|
||||
#include "Cursor.h"
|
||||
@ -1656,7 +1657,7 @@ bool InsetMathHull::readQuiet(Lexer & lex)
|
||||
}
|
||||
|
||||
|
||||
int InsetMathHull::plaintext(odocstream & os, OutputParams const & runparams) const
|
||||
int InsetMathHull::plaintext(odocstream & os, OutputParams const &) const
|
||||
{
|
||||
if (0 && display()) {
|
||||
Dimension dim;
|
||||
@ -1670,7 +1671,8 @@ int InsetMathHull::plaintext(odocstream & os, OutputParams const & runparams) co
|
||||
return tpain.textheight();
|
||||
} else {
|
||||
odocstringstream oss;
|
||||
WriteStream wi(oss, false, true, WriteStream::wsDefault, runparams.encoding);
|
||||
Encoding const * const enc = encodings.fromLyXName("utf8");
|
||||
WriteStream wi(oss, false, true, WriteStream::wsDefault, enc);
|
||||
// Fix Bug #6139
|
||||
if (type_ == hullRegexp)
|
||||
write(wi);
|
||||
|
Loading…
Reference in New Issue
Block a user