]> git.lyx.org Git - lyx.git/blobdiff - src/lyxfont.C
fix "make dist" target
[lyx.git] / src / lyxfont.C
index e43715aab82b3bb5bf73d206f0b4ef8915b65357..e9b8aa8a42483015ecf1ce698b84dbc380f943ae 100644 (file)
@@ -19,7 +19,6 @@
 
 #include "gettext.h"
 #include "lyxfont.h"
-#include "language.h"
 #include "debug.h"
 #include "lyxrc.h"
 #include "lyxlex.h"
@@ -156,11 +155,6 @@ bool LyXFont::FontBits::operator!=(LyXFont::FontBits const & fb1) const
 }
 
 
-LyXFont::LyXFont()
-       : bits(sane), lang(default_language)
-{}
-
-
 LyXFont::LyXFont(LyXFont::FONT_INIT1)
        : bits(inherit), lang(default_language)
 {}
@@ -191,36 +185,12 @@ LyXFont::LyXFont(LyXFont::FONT_INIT3, Language const * l)
 {}
 
 
-LyXFont::FONT_FAMILY LyXFont::family() const 
-{
-       return bits.family;
-}
-
-
-LyXFont::FONT_SERIES LyXFont::series() const
-{
-       return bits.series;
-}
-
-
-LyXFont::FONT_SIZE LyXFont::size() const
-{
-       return bits.size;
-}
-
-
 LyXFont::FONT_MISC_STATE LyXFont::underbar() const
 {
        return bits.underbar;
 }
 
 
-LyXFont::FONT_MISC_STATE LyXFont::noun() const
-{
-       return bits.noun;
-}
-
-
 LyXFont::FONT_MISC_STATE LyXFont::latex() const 
 {
        return bits.latex;