]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/gtk/GView.C
Change glob() API to accept a dir parameter.
[lyx.git] / src / frontends / gtk / GView.C
index c58b864de136ae6e4719604dc617e03d71915969..742541afa31eeeb45e488b7b402f2120d3e0bb23 100644 (file)
 
 #include <config.h>
 
+// Too hard to make concept checks work with this file
+#ifdef _GLIBCPP_CONCEPT_CHECKS
+#undef _GLIBCPP_CONCEPT_CHECKS
+#endif
+
 #include "GView.h"
 #include "GMenubar.h"
 #include "GMiniBuffer.h"
@@ -75,7 +80,6 @@ GView::GView()
        box_map_[Right]  = box_store_[5];
 
        // Make all Boxes visible.
-       top_box_.show();
        top_box_.show_all();
 
        // Define the components making up the window.
@@ -172,5 +176,13 @@ void GView::clearMessage()
        message(getLyXFunc().viewStatusMessage());
 }
 
+
+bool GView::hasFocus() const
+{
+       // No real implementation needed for now
+       return true;
+}
+
+
 } // namespace frontend
 } // namespace lyx