mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-24 17:09:41 +00:00
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:
parent
77afb934da
commit
0419779ef9
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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";
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user