]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiMath.h
do what the FIXME suggested
[lyx.git] / src / frontends / qt4 / GuiMath.h
index c6026ad32df74dc38a8fa607542f71cee6a5ce1b..4d45cba98fd213136485e43dc5ce5f1e69d90b83 100644 (file)
@@ -14,7 +14,7 @@
 
 #include "GuiDialog.h"
 #include "lfuns.h" // for kb_action
-#include "Font.h"
+#include "FontEnums.h"
 
 #include <map>
 
@@ -24,19 +24,19 @@ namespace frontend {
 
 struct MathSymbol {
        MathSymbol(char_type uc = '?', unsigned char fc = 0,
-               Font::FONT_FAMILY ff = Font::SYMBOL_FAMILY)
+               FontFamily ff = SYMBOL_FAMILY)
                : unicode(uc), fontcode(fc), fontfamily(ff)
        {}
        char_type unicode;
        unsigned char fontcode;
-       Font::FONT_FAMILY fontfamily;
+       FontFamily fontfamily;
 };
 
 
 class GuiMath : public GuiDialog
 {
 public:
-       GuiMath(LyXView & lv, std::string const & name);
+       GuiMath(GuiView & lv, QString const & name, QString const & title);
 
        /// Nothing to initialise in this case.
        bool initialiseParams(std::string const &) { return true; }