mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Make WordList noncopyable
To avoid unwanted double deletion of d.
This commit is contained in:
parent
50467f3f55
commit
7baaeb3fd2
@ -17,6 +17,9 @@
|
||||
namespace lyx {
|
||||
|
||||
class WordList {
|
||||
// noncopyable because of pimpl
|
||||
WordList(WordList const &);
|
||||
WordList & operator=(WordList const &);
|
||||
public:
|
||||
///
|
||||
WordList();
|
||||
|
Loading…
Reference in New Issue
Block a user