]> 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 5b5a16f67fcfbbbc774cd0e6707b17114719ebec..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;
@@ -437,6 +442,8 @@ public:
        bool change_bars;
        ///
        bool compressed;
+       ///
+       bool postpone_fragile_content;
 
        /// the author list for the document
        AuthorList & authors();