mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
EndNests in Layout::write()
This commit is contained in:
parent
99ecc6e2c9
commit
8c56e89240
@ -1401,14 +1401,14 @@ void Layout::write(ostream & os) const
|
|||||||
os << '\n';
|
os << '\n';
|
||||||
}
|
}
|
||||||
if (!nests_.empty()) {
|
if (!nests_.empty()) {
|
||||||
os << "\tNests ";
|
os << "\tNests\n\t";
|
||||||
for (set<docstring>::const_iterator it = nests_.begin();
|
for (set<docstring>::const_iterator it = nests_.begin();
|
||||||
it != nests_.end(); ++it) {
|
it != nests_.end(); ++it) {
|
||||||
if (it != nests_.begin())
|
if (it != nests_.begin())
|
||||||
os << ',';
|
os << ',';
|
||||||
os << to_utf8(*it);
|
os << to_utf8(*it);
|
||||||
}
|
}
|
||||||
os << '\n';
|
os << "\n\tEndNests\n";
|
||||||
}
|
}
|
||||||
if (refprefix.empty())
|
if (refprefix.empty())
|
||||||
os << "\tRefPrefix OFF\n";
|
os << "\tRefPrefix OFF\n";
|
||||||
|
Loading…
Reference in New Issue
Block a user