Make WordList noncopyable

To avoid unwanted double deletion of d.
This commit is contained in:
Georg Baum 2014-07-04 21:15:21 +02:00
parent 50467f3f55
commit 7baaeb3fd2

View File

@ -17,6 +17,9 @@
namespace lyx {
class WordList {
// noncopyable because of pimpl
WordList(WordList const &);
WordList & operator=(WordList const &);
public:
///
WordList();