]> git.lyx.org Git - lyx.git/blobdiff - src/bufferparams.h
fix some C++ parsing bugs
[lyx.git] / src / bufferparams.h
index 370b160179acd5136eb346dd5c767ba661ad5fd1..cc81d5f8164a78655763d295efee694c0fe365eb 100644 (file)
@@ -24,6 +24,7 @@
 #include "insets/insetquotes.h"
 
 #include <boost/array.hpp>
+#include <vector>
 
 class LyXLex;
 class LatexFeatures;
@@ -231,10 +232,11 @@ public:
        bool tracking_changes;
        /// Time ago we agreed that this was a buffer property [ale990407]
        string parentname;
-private:
-       /// mapping of author IDs
-       std::vector<int> author_ids;
 
+       /// map of the file's author IDs to buffer author IDs
+       std::vector<int> author_map;
+
+private:
        /// the author list
        AuthorList authorlist;