]> git.lyx.org Git - lyx.git/blobdiff - src/ISpell.cpp
adjust
[lyx.git] / src / ISpell.cpp
index d89814ac02b8bd437ba302fcc4d580bff2ae4308..c0cfe5e441af8b6fa029fc279df41eeabd70970a 100644 (file)
@@ -22,7 +22,7 @@
 #include "LyXRC.h"
 #include "WordLangTuple.h"
 
-#include "support/forkedcall.h"
+#include "support/Forkedcall.h"
 #include "support/lstrings.h"
 #include "support/unicode.h"
 
 # include <sys/time.h>
 #endif
 
-
-namespace lyx {
-
-using support::bformat;
-
 using boost::shared_ptr;
 
 #ifndef CXX_GLOBAL_CSTD
@@ -52,6 +47,10 @@ using std::max;
 using std::string;
 
 
+namespace lyx {
+
+using support::bformat;
+
 namespace {
 
 class LaunchIspell : public support::ForkedProcess {
@@ -221,7 +220,7 @@ docstring const from_iconv_encoding(string const & s, string const & encoding)
 ISpell::ISpell(BufferParams const & params, string const & lang)
        : in(0), out(0), inerr(0), str(0)
 {
-       LYXERR(Debug::GUI) << "Created ispell" << endl;
+       //LYXERR(Debug::GUI) << "Created ispell" << endl;
 
        encoding = params.encoding().iconvName();
 
@@ -315,7 +314,7 @@ ISpell::ISpell(BufferParams const & params, string const & lang)
 
 ISpell::~ISpell()
 {
-       LYXERR(Debug::GUI) << "Killing ispell" << endl;
+       //LYXERR(Debug::GUI) << "Killing ispell" << endl;
 
        if (in)
                fclose(in);