mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-13 17:20:55 +00:00
* src/insets/InsetTabular.cpp:
- handle char correctly for docstream (bug 4147). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_5_X@21353 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
fd4fa37926
commit
a94fe3fb62
@ -2794,7 +2794,7 @@ void Tabular::plaintext(Buffer const & buf, odocstream & os,
|
|||||||
if (isPartOfMultiColumn(i, j))
|
if (isPartOfMultiColumn(i, j))
|
||||||
continue;
|
continue;
|
||||||
if (onlydata && j > 0)
|
if (onlydata && j > 0)
|
||||||
os << delim;
|
os.put(delim);
|
||||||
plaintextPrintCell(buf, os, runparams,
|
plaintextPrintCell(buf, os, runparams,
|
||||||
cell, i, j, clen, onlydata);
|
cell, i, j, clen, onlydata);
|
||||||
++cell;
|
++cell;
|
||||||
|
@ -101,6 +101,8 @@ What's new
|
|||||||
|
|
||||||
- Do not close the error dialog on double click (bug 4090).
|
- Do not close the error dialog on double click (bug 4090).
|
||||||
|
|
||||||
|
- Fix cut and paste of tabular cells via the external clipboard (bug 4147).
|
||||||
|
|
||||||
|
|
||||||
* DOCUMENTATION
|
* DOCUMENTATION
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user