]> git.lyx.org Git - lyx.git/blobdiff - src/BufferParams.h
Fix yet another thinko in the math grid paste code
[lyx.git] / src / BufferParams.h
index c66dd6185a3c38c60eb104ce79bcad2e346bbb6c..84a5e58eab7cb4cd75ba7894270e6e4db846255b 100644 (file)
@@ -214,7 +214,12 @@ public:
        void clearIncludedChildren() { included_children_.clear(); }
 
        /// update aux files of unincluded children (with \includeonly)
-       bool maintain_unincluded_children;
+       enum ChildrenMaintenance {
+               CM_None,
+               CM_Mostly,
+               CM_Strict
+       };
+       ChildrenMaintenance maintain_unincluded_children;
 
        /// returns the main font for the buffer (document)
        Font const getFont() const;