]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/gtk/GText.C
Change glob() API to accept a dir parameter.
[lyx.git] / src / frontends / gtk / GText.C
index 642008d313f0d6da8be244d984a60a361631b155..2f28716cd5280727163553415bbeab7956a93573 100644 (file)
@@ -9,15 +9,22 @@
  */
 
 #include <config.h>
-#include <gtkmm.h>
-#include <libglademm.h>
 
-#include "support/lstrings.h"
-#include "ControlCommand.h"
+// Too hard to make concept checks work with this file
+#ifdef _GLIBCPP_CONCEPT_CHECKS
+#undef _GLIBCPP_CONCEPT_CHECKS
+#endif
+
 #include "GText.h"
+#include "ControlCommand.h"
 #include "ghelpers.h"
 #include "IdSc.h"
 
+#include "support/lstrings.h"
+
+#include <gtkmm.h>
+#include <libglademm.h>
+
 using std::string;
 
 namespace lyx {
@@ -29,12 +36,14 @@ GText::GText(Dialog & parent, string const & title, string const & label)
 {
 }
 
+
 void GText::apply()
 {
        string const contents = Glib::locale_from_utf8(entry_->get_text());
        controller().params().setContents(contents);
 }
 
+
 void GText::update()
 {
        string const contents = support::trim(
@@ -42,6 +51,7 @@ void GText::update()
        entry_->set_text(Glib::locale_to_utf8(contents));
 }
 
+
 void GText::doBuild()
 {
        string const gladeName = findGladeFile("text");
@@ -64,9 +74,10 @@ void GText::doBuild()
        setRestore(restore);
        bcview().addReadOnly(entry_);
        entry_->signal_changed().connect(
-               SigC::slot(*this, &GText::onEntryChanged));
+               sigc::mem_fun(*this, &GText::onEntryChanged));
 }
 
+
 void GText::onEntryChanged()
 {
        bc().valid(!entry_->get_text().empty());