mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 05:25:26 +00:00
remove unused parameter
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17828 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
8971c25508
commit
9e8f7c38a4
@ -1097,7 +1097,7 @@ bool Paragraph::simpleTeXOnePar(Buffer const & buf,
|
||||
// simpleTeXSpecialChars ignores spaces if
|
||||
// style->pass_thru is false.
|
||||
if (i != body_pos - 1) {
|
||||
if (pimpl_->simpleTeXBlanks(bparams,
|
||||
if (pimpl_->simpleTeXBlanks(
|
||||
*(runparams.encoding), os, texrow,
|
||||
i, column, font, *style))
|
||||
// A surrogate pair was output. We
|
||||
|
@ -385,8 +385,7 @@ int Paragraph::Pimpl::latexSurrogatePair(odocstream & os, value_type c,
|
||||
}
|
||||
|
||||
|
||||
bool Paragraph::Pimpl::simpleTeXBlanks(BufferParams const & bparams,
|
||||
Encoding const & encoding,
|
||||
bool Paragraph::Pimpl::simpleTeXBlanks(Encoding const & encoding,
|
||||
odocstream & os, TexRow & texrow,
|
||||
pos_type & i,
|
||||
unsigned int & column,
|
||||
|
@ -131,7 +131,7 @@ public:
|
||||
/// Output a space in appropriate formatting (or a surrogate pair
|
||||
/// if the next character is a combining character).
|
||||
/// \return whether a surrogate pair was output.
|
||||
bool simpleTeXBlanks(BufferParams const &, Encoding const &,
|
||||
bool simpleTeXBlanks(Encoding const &,
|
||||
odocstream &, TexRow & texrow,
|
||||
pos_type & i,
|
||||
unsigned int & column,
|
||||
|
Loading…
Reference in New Issue
Block a user