fix compiler warnings about unused parameters

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17325 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Georg Baum 2007-02-24 17:18:13 +00:00
parent 77afb934da
commit 0419779ef9
4 changed files with 4 additions and 4 deletions

View File

@ -70,7 +70,7 @@ int InsetLine::latex(Buffer const &, odocstream & os,
int InsetLine::plaintext(Buffer const &, odocstream & os,
OutputParams const & runparams) const
OutputParams const &) const
{
os << "\n-------------------------------------------\n";
return PLAINTEXT_NEWLINE;

View File

@ -63,7 +63,7 @@ int InsetNewline::latex(Buffer const &, odocstream &,
int InsetNewline::plaintext(Buffer const &, odocstream & os,
OutputParams const & runparams) const
OutputParams const &) const
{
os << '\n';
return PLAINTEXT_NEWLINE;

View File

@ -88,7 +88,7 @@ int InsetPagebreak::latex(Buffer const &, odocstream & os,
int InsetPagebreak::plaintext(Buffer const &, odocstream & os,
OutputParams const & runparams) const
OutputParams const &) const
{
os << '\n';
return PLAINTEXT_NEWLINE;

View File

@ -57,7 +57,7 @@ InsetBase::Code InsetTOC::lyxCode() const
int InsetTOC::plaintext(Buffer const & buffer, odocstream & os,
OutputParams const & runparams) const
OutputParams const &) const
{
os << getScreenLabel(buffer) << "\n\n";