mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Style.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32253 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
ec8ebdd0c0
commit
9fbb35bb89
@ -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_;
|
||||
}
|
||||
|
||||
|
||||
|
@ -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_;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user