]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/gtk/LyXScreenFactory.C
Change glob() API to accept a dir parameter.
[lyx.git] / src / frontends / gtk / LyXScreenFactory.C
index bcf1362a1ff86830c8b0fa61569982b7b5c147fc..d0354882110d09cdb52ef6f1eabf3a04e1853e44 100644 (file)
 
 #include <config.h>
 
-#include <gtkmm.h>
-#include "frontends/LyXScreenFactory.h"
+// Too hard to make concept checks work with this file
+#ifdef _GLIBCPP_CONCEPT_CHECKS
+#undef _GLIBCPP_CONCEPT_CHECKS
+#endif
 
 #include "GWorkArea.h"
 #include "GScreen.h"
 
+#include "frontends/LyXScreenFactory.h"
 
 namespace LyXScreenFactory {
 
 
 LyXScreen * create(WorkArea & owner)
 {
+       using lyx::frontend::GScreen;
+       using lyx::frontend::GWorkArea;
+
        return new GScreen(static_cast<GWorkArea &>(owner));
 }