mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +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,
|
void Buffer::makeLyXHTMLFile(FileName const & fname,
|
||||||
OutputParams const & runparams,
|
OutputParams const & runparams) const
|
||||||
bool const body_only) const
|
|
||||||
{
|
{
|
||||||
LYXERR(Debug::LATEX, "makeLyXHTMLFile...");
|
LYXERR(Debug::LATEX, "makeLyXHTMLFile...");
|
||||||
|
|
||||||
@ -1623,7 +1622,7 @@ void Buffer::makeLyXHTMLFile(FileName const & fname,
|
|||||||
updateBuffer(UpdateMaster, OutputUpdate);
|
updateBuffer(UpdateMaster, OutputUpdate);
|
||||||
updateMacroInstances(OutputUpdate);
|
updateMacroInstances(OutputUpdate);
|
||||||
|
|
||||||
writeLyXHTMLSource(ofs, runparams, body_only);
|
writeLyXHTMLSource(ofs, runparams);
|
||||||
|
|
||||||
ofs.close();
|
ofs.close();
|
||||||
if (ofs.fail())
|
if (ofs.fail())
|
||||||
|
@ -313,8 +313,7 @@ public:
|
|||||||
bool only_body = false) const;
|
bool only_body = false) const;
|
||||||
///
|
///
|
||||||
void makeLyXHTMLFile(support::FileName const & filename,
|
void makeLyXHTMLFile(support::FileName const & filename,
|
||||||
OutputParams const & runparams_in,
|
OutputParams const & runparams_in) const;
|
||||||
bool only_body = false) const;
|
|
||||||
///
|
///
|
||||||
void writeLyXHTMLSource(odocstream & os,
|
void writeLyXHTMLSource(odocstream & os,
|
||||||
OutputParams const & runparams_in,
|
OutputParams const & runparams_in,
|
||||||
|
Loading…
Reference in New Issue
Block a user