]> git.lyx.org Git - lyx.git/blobdiff - src/WordList.h
es.po: fix a typo introduced by last commit
[lyx.git] / src / WordList.h
index b7f88fb78f305767c278ec1fe19e1493b87de80b..d21f9c8c7ed6924316482ef3dfdd14dbbe389e71 100644 (file)
 
 #include "support/docstring.h"
 
-#include "Language.h"
-
 namespace lyx {
 
 class WordList {
+       // noncopyable because of pimpl
+       WordList(WordList const &);
+       WordList & operator=(WordList const &);
 public:
        ///
        WordList();
@@ -41,7 +42,7 @@ private:
        Impl * d;
 };
 
-WordList * theWordList(Language const & lang);
+WordList * theWordList(std::string const & lang);
 
 } // namespace lyx