From: Michael Schmitt Date: Fri, 20 Oct 2006 12:44:37 +0000 (+0000) Subject: change tracking: X-Git-Tag: 1.6.10~12319 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=88dac3a0628b9ef53f6feb364dd4899012e0de06;p=lyx.git 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 --- diff --git a/src/bufferparams.C b/src/bufferparams.C index a43365cc07..ad6c3d2110 100644 --- a/src/bufferparams.C +++ b/src/bufferparams.C @@ -704,13 +704,10 @@ void BufferParams::writeFile(ostream & os) const os << "\\tracking_changes " << convert(trackChanges) << "\n"; os << "\\output_changes " << convert(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"; } }