diff options
| author | Marc Jeanmougin <marc@jeanmougin.fr> | 2018-06-14 18:24:48 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marc@jeanmougin.fr> | 2018-06-14 18:24:48 +0000 |
| commit | 5f4e9e22f0d31216b16b31c860ca6b5a66ab91cb (patch) | |
| tree | ab03ddc2f4ac91690f2003d7b7075d7d9e230e1d /src/ui/tools | |
| parent | Merge branch 'transl_fr' of gitlab.com:gadic/inkscape (diff) | |
| parent | Run clang-tidy’s modernize-use-equals-delete pass. (diff) | |
| download | inkscape-5f4e9e22f0d31216b16b31c860ca6b5a66ab91cb.tar.gz inkscape-5f4e9e22f0d31216b16b31c860ca6b5a66ab91cb.zip | |
Merge branch 'clang-tidy-delete-pass' of gitlab.com:linkmauve/inkscape
Diffstat (limited to 'src/ui/tools')
| -rw-r--r-- | src/ui/tools/tool-base.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/tools/tool-base.h b/src/ui/tools/tool-base.h index e7b0d0155..945e41a77 100644 --- a/src/ui/tools/tool-base.h +++ b/src/ui/tools/tool-base.h @@ -228,8 +228,8 @@ protected: bool sp_event_context_knot_mouseover() const; private: - ToolBase(const ToolBase&); - ToolBase& operator=(const ToolBase&); + ToolBase(const ToolBase&) = delete; + ToolBase& operator=(const ToolBase&) = delete; bool _keyboardMove(GdkEventKey const &event, Geom::Point const &dir); |
