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:
Georg Baum 2007-04-16 18:20:49 +00:00
parent 8971c25508
commit 9e8f7c38a4
3 changed files with 3 additions and 4 deletions

View File

@ -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

View File

@ -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,

View File

@ -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,