]> git.lyx.org Git - lyx.git/blobdiff - src/ispell.C
Replace 'using namespace abc;' with 'using abc::xyz;'
[lyx.git] / src / ispell.C
index 365522f8a496d64246555e0da27bfe648addf3ae..acf8c6a404397e65ed409ae98a4c27ef1c8f97c4 100644 (file)
 
 #include <config.h>
 
-#include "language.h"
+#include "ispell.h"
+
+#include "bufferparams.h"
 #include "debug.h"
 #include "encoding.h"
-#include "ispell.h"
-#include "WordLangTuple.h"
 #include "gettext.h"
-#include "bufferparams.h"
+#include "language.h"
+#include "lyxrc.h"
+#include "WordLangTuple.h"
 
 #include "support/forkedcall.h"
 
 // HP-UX 11.x doesn't have this header
 #ifdef HAVE_SYS_SELECT_H
+#include <sys/select.h>
 #endif
-
-using namespace lyx::support;
+#include <sys/time.h>
 
 #ifndef CXX_GLOBAL_CSTD
 using std::strcpy;
 using std::strlen;
 using std::strpbrk;
-using std::strstr;
 #endif
 
 using std::endl;
 using std::max;
 
+
 namespace {
 
 class LaunchIspell : public lyx::support::ForkedProcess {