X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FBufferParams.h;h=4e176c945e7dddd0b031c2f9c971f0218dcec37c;hb=747afa36cdf89fd5d0451ba2555fdb96e7c6a69d;hp=c66dd6185a3c38c60eb104ce79bcad2e346bbb6c;hpb=c77999a5f3d80d96a5ddb8fba6f837d39d970755;p=lyx.git diff --git a/src/BufferParams.h b/src/BufferParams.h index c66dd6185a..4e176c945e 100644 --- a/src/BufferParams.h +++ b/src/BufferParams.h @@ -184,8 +184,6 @@ public: /// returns \c true if the buffer contains a LaTeX document bool isLatex() const; - /// returns \c true if the buffer contains a DocBook document - bool isDocBook() const; /// returns \c true if the buffer contains a Wed document bool isLiterate() const; @@ -214,7 +212,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;