mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-27 03:36:39 +00:00
fix compiler warnings
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15842 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
f7252e64c6
commit
d6988a6bb4
@ -29,8 +29,8 @@ using std::string;
|
||||
|
||||
|
||||
InsetNomencl::InsetNomencl(InsetCommandParams const & p)
|
||||
: glossary_entry_id(sgml::uniqueID(from_ascii("gloss"))),
|
||||
InsetCommand(p, "nomenclature")
|
||||
: InsetCommand(p, "nomenclature"),
|
||||
glossary_entry_id(sgml::uniqueID(from_ascii("gloss")))
|
||||
{}
|
||||
|
||||
|
||||
@ -40,8 +40,8 @@ docstring const InsetNomencl::getScreenLabel(Buffer const &) const
|
||||
}
|
||||
|
||||
|
||||
int InsetNomencl::docbook(Buffer const & buf, odocstream & os,
|
||||
OutputParams const & params) const
|
||||
int InsetNomencl::docbook(Buffer const &, odocstream & os,
|
||||
OutputParams const &) const
|
||||
{
|
||||
os << "<glossterm linkend=\"" << glossary_entry_id << "\">"
|
||||
<< sgml::escapeString(getParam("symbol"))
|
||||
@ -88,7 +88,7 @@ docstring const InsetPrintNomencl::getScreenLabel(Buffer const &) const
|
||||
|
||||
|
||||
int InsetPrintNomencl::docbook(Buffer const & buf, odocstream & os,
|
||||
OutputParams const & params) const
|
||||
OutputParams const &) const
|
||||
{
|
||||
os << "<glossary>\n";
|
||||
int newlines = 2;
|
||||
|
Loading…
Reference in New Issue
Block a user