]> git.lyx.org Git - lyx.git/blobdiff - src/ispell.C
hopefully fix tex2lyx linking.
[lyx.git] / src / ispell.C
index 8a134c8624935de7cd093094f1dd7c3b4cdccddc..ab7dfcb89cac694017d7e8c1f1b041f91fa76e28 100644 (file)
@@ -32,7 +32,8 @@
 # include <sys/time.h>
 #endif
 
-using lyx::docstring;
+
+namespace lyx {
 
 using boost::shared_ptr;
 
@@ -49,8 +50,8 @@ using std::string;
 
 namespace {
 
-class LaunchIspell : public lyx::support::ForkedProcess {
-       typedef lyx::support::ForkedProcess ForkedProcess;
+class LaunchIspell : public support::ForkedProcess {
+       typedef support::ForkedProcess ForkedProcess;
 public:
        ///
        LaunchIspell(BufferParams const & p, string const & l,
@@ -162,7 +163,7 @@ int LaunchIspell::generateChild()
                string enc = (params.inputenc == "auto")
                        ? params.language->encoding()->latexName()
                        : params.inputenc;
-               string::size_type n = enc.length();
+               size_t const n = enc.length();
                tmp = new char[3];
                string("-T").copy(tmp, 2);
                tmp[2] = '\0';
@@ -264,7 +265,7 @@ ISpell::ISpell(BufferParams const & params, string const & lang)
                }
 
                /* must have read something from stderr */
-               error_ =lyx::from_utf8(buf);
+               error_ =from_utf8(buf);
        } else {
                // select returned error
                error_ = _("The ispell process returned an error.\nPerhaps "
@@ -381,7 +382,7 @@ enum ISpell::Result ISpell::check(WordLangTuple const & word)
        }
 
        if (err_read) {
-               error_ = lyx::from_utf8(buf);
+               error_ = from_utf8(buf);
                return UNKNOWN_WORD;
        }
 
@@ -450,3 +451,6 @@ docstring const ISpell::error()
 {
        return error_;
 }
+
+
+} // namespace lyx