From 88dac3a0628b9ef53f6feb364dd4899012e0de06 Mon Sep 17 00:00:00 2001 From: Michael Schmitt Date: Fri, 20 Oct 2006 12:44:37 +0000 Subject: [PATCH] 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 --- src/bufferparams.C | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) 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"; } } -- 2.39.5