]> git.lyx.org Git - lyx.git/blobdiff - src/Font.h
More requires --> required, for C++2a.
[lyx.git] / src / Font.h
index 02b996e24f7c906dfe7f55caf6e6c6fa576196e1..b845666d143e0666fa91696212be306acadeff60 100644 (file)
@@ -15,7 +15,6 @@
 #ifndef FONT_H
 #define FONT_H
 
-#include "ColorCode.h"
 #include "FontInfo.h"
 
 #include "support/strfwd.h"
@@ -86,11 +85,12 @@ public:
                                 OutputParams const & runparams,
                                 Font const & base,
                                 Font const & next,
+                                bool & needPar,
                                 bool const & closeLanguage = true) const;
 
 
        /// Build GUI description of font state
-       docstring const stateText(BufferParams * params) const;
+       docstring const stateText(BufferParams * params = 0, bool const terse = false) const;
 
        ///
        void validate(LaTeXFeatures & features) const;
@@ -132,11 +132,6 @@ bool operator!=(Font const & font1, Font const & font2)
        return !(font1 == font2);
 }
 
-/** Returns the current freefont, encoded as a std::string to be passed to the
- *  frontends. Implemented in Text3.cpp.
- */
-std::string const freefont2string();
-
 } // namespace lyx
 
 #endif