]> git.lyx.org Git - lyx.git/blobdiff - src/BufferParams.h
Improve how add_to_preamble and insert_to_preamble work, and audit the
[lyx.git] / src / BufferParams.h
index 66e09f907e44b67ed075a12c4843d80bb0add42f..abe30526bd6fb8efd5bdcb1fcca1e8bf17d1b8c1 100644 (file)
@@ -384,11 +384,12 @@ public:
        PDFOptions & pdfoptions();
        PDFOptions const & pdfoptions() const;
 
+       // do not change these values. we rely upon them.
        enum MathOutput {
-               MathML,
-               HTML,
-               Images,
-               LaTeX
+               MathML = 0,
+               HTML = 1,
+               Images = 2,
+               LaTeX = 3
        };
        /// what to use for math output. present choices are above
        MathOutput html_math_output;