mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Pass BufferParams by address
Spotted by coverity. Note that this probably fixes a bug in getTokenValue(), where an author was added to the BufferParams copy.
This commit is contained in:
parent
70ccf9f243
commit
5aadf0879f
@ -602,7 +602,7 @@ Buffer * copyToTempBuffer(ParagraphList const & paragraphs, DocumentClassConstPt
|
||||
|
||||
void putClipboard(ParagraphList const & paragraphs,
|
||||
DocumentClassConstPtr docclass, docstring const & plaintext,
|
||||
BufferParams const bp)
|
||||
BufferParams const & bp)
|
||||
{
|
||||
Buffer * buffer = copyToTempBuffer(paragraphs, docclass);
|
||||
if (!buffer) // already asserted in copyToTempBuffer()
|
||||
|
@ -451,7 +451,7 @@ bool getTokenValue(string const & str, char const * token, Length & len)
|
||||
}
|
||||
|
||||
|
||||
bool getTokenValue(string const & str, char const * token, Change & change, BufferParams bp)
|
||||
bool getTokenValue(string const & str, char const * token, Change & change, BufferParams & bp)
|
||||
{
|
||||
// set the change to be Change() as default as this it should be if not
|
||||
// in the file format.
|
||||
@ -574,7 +574,7 @@ string const write_attribute(string const & name, Length const & value)
|
||||
return value.zero() ? string() : write_attribute(name, value.asString());
|
||||
}
|
||||
|
||||
string const write_attribute(string const & name, Change const & change, BufferParams const bp)
|
||||
string const write_attribute(string const & name, Change const & change, BufferParams const & bp)
|
||||
{
|
||||
odocstringstream ods;
|
||||
if (change.inserted())
|
||||
|
Loading…
Reference in New Issue
Block a user