git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32253 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2009-11-30 20:17:55 +00:00
parent ec8ebdd0c0
commit 9fbb35bb89
2 changed files with 10 additions and 10 deletions

View File

@ -80,23 +80,23 @@ string const & Floating::listName() const
string const & Floating::htmlStyle() const
{
return htmlStyle_;
return html_style_;
}
string const & Floating::htmlClass() const
{
if (htmlClass_.empty())
htmlClass_ = "float-" + type_;
return htmlClass_;
if (html_class_.empty())
html_class_ = "float-" + type_;
return html_class_;
}
string const & Floating::htmlTag() const
{
if (htmlTag_.empty())
htmlTag_ = "div";
return htmlTag_;
if (html_tag_.empty())
html_tag_ = "div";
return html_tag_;
}

View File

@ -72,11 +72,11 @@ private:
///
std::string listName_;
///
mutable std::string htmlTag_;
mutable std::string html_tag_;
///
mutable std::string htmlClass_;
mutable std::string html_class_;
///
std::string htmlStyle_;
std::string html_style_;
///
bool builtin_;
};