diff options
Diffstat (limited to 'src/event-log.h')
| -rw-r--r-- | src/event-log.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/event-log.h b/src/event-log.h index c4c78d1dd..3cbcb6d3a 100644 --- a/src/event-log.h +++ b/src/event-log.h @@ -141,8 +141,8 @@ private: void checkForVirginity(); //< marks the document as untouched if undo/redo reaches a previously saved state // noncopyable, nonassignable - EventLog(EventLog const &other); - EventLog& operator=(EventLog const &other); + EventLog(EventLog const &other) = delete; + EventLog& operator=(EventLog const &other) = delete; }; } // namespace Inkscape |
