]> git.lyx.org Git - lyx.git/blobdiff - src/Compare.h
Update Win installer for new dictionary links. Untested.
[lyx.git] / src / Compare.h
index 40ecf5c23aec832a42f3108782bfb9a2a2609341..df2c7facd53f24f02f155e4bced14cdb732f26cc 100644 (file)
@@ -12,8 +12,6 @@
 #ifndef COMPARE_H
 #define COMPARE_H
 
-#include "Buffer.h"
-
 #include <QObject>
 #include <QThread>
 #include <QTimer>
@@ -22,6 +20,8 @@
 
 namespace lyx {
 
+class Buffer;
+
 /**
  * The options that are used by the Comparison algorithm
  * and are set in the GuiCompare Dialog.
@@ -30,11 +30,13 @@ class CompareOptions {
 public:
        ///
        CompareOptions()
-               : settings_from_new(0)
+               : settings_from_new(0), author(0)
        {}
 
        /// Copy the settings from the new or old document
        bool settings_from_new;
+       /// Author id for change tracking
+       bool author;
 };
 
 /**