summaryrefslogtreecommitdiffstats
path: root/src/live_effects/parameter/text.h
diff options
context:
space:
mode:
authorMarc Jeanmougin <marc@jeanmougin.fr>2018-06-14 18:24:48 +0000
committerMarc Jeanmougin <marc@jeanmougin.fr>2018-06-14 18:24:48 +0000
commit5f4e9e22f0d31216b16b31c860ca6b5a66ab91cb (patch)
treeab03ddc2f4ac91690f2003d7b7075d7d9e230e1d /src/live_effects/parameter/text.h
parentMerge branch 'transl_fr' of gitlab.com:gadic/inkscape (diff)
parentRun clang-tidy’s modernize-use-equals-delete pass. (diff)
downloadinkscape-5f4e9e22f0d31216b16b31c860ca6b5a66ab91cb.tar.gz
inkscape-5f4e9e22f0d31216b16b31c860ca6b5a66ab91cb.zip
Merge branch 'clang-tidy-delete-pass' of gitlab.com:linkmauve/inkscape
Diffstat (limited to 'src/live_effects/parameter/text.h')
-rw-r--r--src/live_effects/parameter/text.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/live_effects/parameter/text.h b/src/live_effects/parameter/text.h
index a9de26a52..51651edcf 100644
--- a/src/live_effects/parameter/text.h
+++ b/src/live_effects/parameter/text.h
@@ -53,8 +53,8 @@ public:
const Glib::ustring get_value() const { return value; };
private:
- TextParam(const TextParam&);
- TextParam& operator=(const TextParam&);
+ TextParam(const TextParam&) = delete;
+ TextParam& operator=(const TextParam&) = delete;
double anchor_x;
double anchor_y;
bool _hide_canvas_text;