]> git.lyx.org Git - lyx.git/blobdiff - src/outputparams.h
fix arabtex-related problems (bug 1225 and bug 1404)
[lyx.git] / src / outputparams.h
index d3fa4b2f0acf5c170de140ec1d44018066c9d827..8071f2454e0a665d5422b3d000470665d8891e94 100644 (file)
 
 #include "support/types.h"
 
+
 struct OutputParams {
-        enum FLAVOR {
-                LATEX,
-                PDFLATEX
-        };
+       //
+       enum FLAVOR {
+               LATEX,
+               PDFLATEX
+       };
 
-        OutputParams() : flavor(LATEX), nice(false),
-                          moving_arg(false), free_spacing(false),
-                          use_babel(false), mixed_content(false),
-                          linelen(0) {}
+       OutputParams()
+               : flavor(LATEX), nice(false), moving_arg(false),
+                 free_spacing(false), use_babel(false),
+                 mixed_content(false), linelen(0)
+       {}
 
        /** The latex that we export depends occasionally on what is to
            compile the file.
        */
-        FLAVOR flavor;
+       FLAVOR flavor;
 
        /** Are we to write a 'nice' LaTeX file or not.
            This esentially seems to mean whether InsetInclude, InsetGraphics
@@ -49,17 +52,17 @@ struct OutputParams {
        bool free_spacing;
 
        /** This var is set by the return value from BufferParams::writeLaTeX
-        */
+       */
        bool use_babel;
 
        /** Used for docbook to see if inside a region of mixed content.
            In that case all the white spaces are significant and can not appear
            at the begin or end.
-        */
+       */
        bool mixed_content;
 
-       /** Line lenght to use with ascii export.
-        */
+       /** Line length to use with ascii export.
+       */
        lyx::size_type linelen;
 };