diff options
author | David Robillard <d@drobilla.net> | 2020-12-15 19:30:26 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-12-15 19:32:28 +0100 |
commit | 5d812e6f310ed31ad913bd42cf7ff94d2fcdefd7 (patch) | |
tree | e0154d169ffdaa5ae8e4d910f5f413e0784e1b4c /src | |
parent | 7bc3e5ca81642996fae52e4d8ca6add67b994eaf (diff) | |
download | ganv-5d812e6f310ed31ad913bd42cf7ff94d2fcdefd7.tar.gz ganv-5d812e6f310ed31ad913bd42cf7ff94d2fcdefd7.tar.bz2 ganv-5d812e6f310ed31ad913bd42cf7ff94d2fcdefd7.zip |
Clean up special member functions
Diffstat (limited to 'src')
-rw-r--r-- | src/Canvas.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Canvas.cpp b/src/Canvas.cpp index 92258bd..1219950 100644 --- a/src/Canvas.cpp +++ b/src/Canvas.cpp @@ -301,6 +301,12 @@ struct GanvCanvasImpl { _move_cursor = gdk_cursor_new(GDK_FLEUR); } + GanvCanvasImpl(const GanvCanvasImpl&) = delete; + GanvCanvasImpl& operator=(const GanvCanvasImpl&) = delete; + + GanvCanvasImpl(GanvCanvasImpl&&) = delete; + GanvCanvasImpl& operator=(GanvCanvasImpl&&) = delete; + ~GanvCanvasImpl() { if (_animate_idle_id) { |