mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
change tracking:
* src/bufferparams.C: output authors no matter whether we are in CT mode or not git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15402 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
205e59a03a
commit
88dac3a062
@ -704,13 +704,10 @@ void BufferParams::writeFile(ostream & os) const
|
||||
os << "\\tracking_changes " << convert<string>(trackChanges) << "\n";
|
||||
os << "\\output_changes " << convert<string>(outputChanges) << "\n";
|
||||
|
||||
if (trackChanges) {
|
||||
// FIXME: Change tracking (MG)
|
||||
AuthorList::Authors::const_iterator it = pimpl_->authorlist.begin();
|
||||
AuthorList::Authors::const_iterator end = pimpl_->authorlist.end();
|
||||
for (; it != end; ++it) {
|
||||
os << "\\author " << it->second << "\n";
|
||||
}
|
||||
AuthorList::Authors::const_iterator a_it = pimpl_->authorlist.begin();
|
||||
AuthorList::Authors::const_iterator a_end = pimpl_->authorlist.end();
|
||||
for (; a_it != a_end; ++a_it) {
|
||||
os << "\\author " << a_it->second << "\n";
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user