]> 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 c4890f0535177643404f1996e157e41ebd6c6819..d0354882110d09cdb52ef6f1eabf3a04e1853e44 100644 (file)
@@ -5,23 +5,29 @@
  *
  * \author Huang Ying
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #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));
 }