Fix a few warnings in Floating.

This commit is contained in:
Thibaut Cuvelier 2021-09-24 01:19:28 +02:00
parent e53af9e677
commit dca39815d3
2 changed files with 5 additions and 1 deletions

View File

@ -85,6 +85,10 @@ Floating::Floating(string const & type, string const & placement,
// Specific floats for achemso.
else if (docbook_float_type_ == "figure" && achemso.find(floattype_) != achemso.end())
docbook_attr_ += " type='" + floattype_ + "'";
// Finally, merge in the attributes given in argument.
if (!docbookAttr.empty())
docbook_attr_ += " " + docbookAttr;
}
}

View File

@ -143,7 +143,7 @@ private:
/// DocBook tag type (block, paragraph, inline)
mutable std::string docbook_tag_type_;
/// DocBook float type, to override float_type_ (figure, table, algorithm, video)
mutable std::string docbook_float_type_;
std::string docbook_float_type_;
};