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/live_effects/parameter/fontbutton.h | |
| 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 '')
| -rw-r--r-- | src/live_effects/parameter/fontbutton.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/live_effects/parameter/fontbutton.h b/src/live_effects/parameter/fontbutton.h index e2d0e1bb2..f028492a7 100644 --- a/src/live_effects/parameter/fontbutton.h +++ b/src/live_effects/parameter/fontbutton.h @@ -37,8 +37,8 @@ public: const Glib::ustring get_value() const { return defvalue; }; private: - FontButtonParam(const FontButtonParam&); - FontButtonParam& operator=(const FontButtonParam&); + FontButtonParam(const FontButtonParam&) = delete; + FontButtonParam& operator=(const FontButtonParam&) = delete; Glib::ustring value; Glib::ustring defvalue; |
