mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 18:08:10 +00:00
Remove unused optional variable.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@39157 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
f14970eacd
commit
c53971b07e
@ -1609,8 +1609,7 @@ void Buffer::writeDocBookSource(odocstream & os, string const & fname,
|
||||
|
||||
|
||||
void Buffer::makeLyXHTMLFile(FileName const & fname,
|
||||
OutputParams const & runparams,
|
||||
bool const body_only) const
|
||||
OutputParams const & runparams) const
|
||||
{
|
||||
LYXERR(Debug::LATEX, "makeLyXHTMLFile...");
|
||||
|
||||
@ -1623,7 +1622,7 @@ void Buffer::makeLyXHTMLFile(FileName const & fname,
|
||||
updateBuffer(UpdateMaster, OutputUpdate);
|
||||
updateMacroInstances(OutputUpdate);
|
||||
|
||||
writeLyXHTMLSource(ofs, runparams, body_only);
|
||||
writeLyXHTMLSource(ofs, runparams);
|
||||
|
||||
ofs.close();
|
||||
if (ofs.fail())
|
||||
|
@ -313,8 +313,7 @@ public:
|
||||
bool only_body = false) const;
|
||||
///
|
||||
void makeLyXHTMLFile(support::FileName const & filename,
|
||||
OutputParams const & runparams_in,
|
||||
bool only_body = false) const;
|
||||
OutputParams const & runparams_in) const;
|
||||
///
|
||||
void writeLyXHTMLSource(odocstream & os,
|
||||
OutputParams const & runparams_in,
|
||||
|
Loading…
Reference in New Issue
Block a user