]> git.lyx.org Git - lyx.git/blobdiff - src/OutputParams.h
Run codespell on src/frontends
[lyx.git] / src / OutputParams.h
index 9a9577f560fc29d2a8af3e9576b0bfdae0097b18..46495fe66ecf5950717c2da9b771153b3a4e3279 100644 (file)
@@ -86,7 +86,7 @@ public:
        MathFlavor math_flavor;
 
        /** Are we to write a 'nice' LaTeX file or not.
-           This esentially seems to mean whether InsetInclude, InsetGraphics
+           This essentially seems to mean whether InsetInclude, InsetGraphics
            and InsetExternal should add the absolute path to any external
            files or not.
            Non-nice LaTeX also includes additional safe line breaks in order to
@@ -129,7 +129,7 @@ public:
         */
        Font const * local_font;
 
-       /** Document language babel name
+       /** Document language lyx name
         */
        std::string document_language;
 
@@ -177,6 +177,10 @@ public:
        */
        bool use_polyglossia;
 
+       /** Do we use hyperref?
+       */
+       bool use_hyperref;
+
        /// Do we use the CJK package?
        bool use_CJK;
 
@@ -196,9 +200,6 @@ public:
        */
        std::string index_command;
 
-       /// The Xindy language module
-       std::string xindy_language;
-
        /** Hyperref driver
        */
        std::string hyperref_driver;
@@ -212,13 +213,13 @@ public:
         */
        int depth;
 
-       /** Export data filled in by the latex(), docbook() etc methods.
+       /** Export data filled in by the latex(), docbook(), etc. methods.
            This is a hack: Make it possible to add stuff to constant
            OutputParams instances.
        */
        std::shared_ptr<ExportData> exportdata;
 
-       /** Store labels, index entries (etc.) (in \ref post_macro)
+       /** Store labels, index entries, etc. (in \ref post_macro)
         *  and output them later. This is used in particular to get
         *  labels and index entries (and potentially other fragile commands)
         *  outside of moving arguments (bug 2154)
@@ -357,15 +358,6 @@ public:
 
        /// Explicit output folder, if any is desired
        std::string export_folder;
-
-       /// Have we already output the title?
-       mutable bool already_title;
-       /// Used to signal we need to output \end{TITLEBLOCK} when title
-       /// environment is used.
-       mutable bool issued_title_cmd;
-       /// Did we already issue the warning about mixing title and
-       /// non-title layouts?
-       mutable bool gave_layout_warning;
 };