]> git.lyx.org Git - lyx.git/blobdiff - src/Buffer.cpp
Compile fix.
[lyx.git] / src / Buffer.cpp
index 979b37ed5f27d220bfce3cec9f8954e5a8a4fc5c..8dd228b5b90a3986ad758f49c8c35982e6523eef 100644 (file)
@@ -127,7 +127,7 @@ namespace {
 
 // Do not remove the comment below, so we get merge conflict in
 // independent branches. Instead add your own.
-int const LYX_FORMAT = 364;  // spitz: branch suffixes for filenames
+int const LYX_FORMAT = 369; // vfr: add author ids to list of authors
 
 typedef map<string, bool> DepClean;
 typedef map<docstring, pair<InsetLabel const *, Buffer::References> > RefCache;
@@ -1014,7 +1014,7 @@ bool Buffer::write(ostream & ofs) const
        AuthorList::Authors::const_iterator a_it = params().authors().begin();
        AuthorList::Authors::const_iterator a_end = params().authors().end();
        for (; a_it != a_end; ++a_it)
-               a_it->second.setUsed(false);
+               a_it->setUsed(false);
 
        ParIterator const end = const_cast<Buffer *>(this)->par_iterator_end();
        ParIterator it = const_cast<Buffer *>(this)->par_iterator_begin();
@@ -1632,9 +1632,9 @@ bool Buffer::getStatus(FuncRequest const & cmd, FuncStatus & flag)
 
                case LFUN_BRANCH_ACTIVATE: 
                case LFUN_BRANCH_DEACTIVATE: {
-               BranchList const & branchList = params().branchlist();
-               docstring const branchName = cmd.argument();
-               flag.setEnabled(!branchName.empty()
+                       BranchList const & branchList = params().branchlist();
+                       docstring const branchName = cmd.argument();
+                       flag.setEnabled(!branchName.empty()
                                && branchList.find(branchName));
                        break;
                }