]> git.lyx.org Git - lyx.git/blobdiff - src/LaTeXFonts.h
Russian layouttranslations reviewed by Yuriy, Dec 13 2017.
[lyx.git] / src / LaTeXFonts.h
index a50a0770d9fa1740f71dbb888254ab61e860f70b..a77902a5800e985c38f5c9dcb238933e00887da7 100644 (file)
@@ -26,7 +26,7 @@ class Lexer;
 class LaTeXFont {
 public:
        /// TeX font
-       LaTeXFont() : switchdefault_(false) {}
+       LaTeXFont() : osfdefault_(false), switchdefault_(false) {}
        /// The font name
        docstring const & name() { return name_; }
        /// The name to appear in the document dialog
@@ -64,13 +64,13 @@ public:
        bool osfDefault() const { return osfdefault_; }
        /// Is this font available?
        bool available(bool ot1, bool nomath);
-       /// Does this font provide an alternative without math? 
+       /// Does this font provide an alternative without math?
        bool providesNoMath(bool ot1, bool complete);
        /// Does this font provide Old Style Figures?
        bool providesOSF(bool ot1, bool complete, bool nomath);
        /// Does this font provide optional true SmallCaps?
        bool providesSC(bool ot1, bool complete, bool nomath);
-       /** does this font provide OSF and Small Caps only via 
+       /** does this font provide OSF and Small Caps only via
         * a single, undifferentiated expert option?
         */
        bool hasMonolithicExpertSet(bool ot1, bool complete, bool nomath);
@@ -89,7 +89,7 @@ public:
        ///
        bool readFont(Lexer & lex);
 private:
-       /// Return the preferred available package 
+       /// Return the preferred available package
        std::string const getAvailablePackage(bool dryrun);
        /// Return the package options
        std::string const getPackageOptions(bool ot1,
@@ -133,14 +133,14 @@ private:
        ///
        docstring requires_;
        ///
-       std::string preamble_;
+       docstring preamble_;
        ///
        bool osfdefault_;
        ///
        bool switchdefault_;
 };
-  
-  
+
+
 /** The list of available LaTeX fonts
  */
 class LaTeXFonts {