diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-08-18 13:16:31 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-08-18 14:24:11 +0100 |
commit | 089620728299ab1688edaf066e9f9790d67449aa (patch) | |
tree | ad6f09018d00118fd046ea154d3217369a3c7af4 /vcl/unx/generic/glyphs | |
parent | 7a31ae209304730e06e1f33333ebc81e7c7b5de9 (diff) |
cppcheck: noCopyConstructor
Change-Id: Id5323cb6f52666f85965e11b07e4f2bca8af4e78
Diffstat (limited to 'vcl/unx/generic/glyphs')
-rw-r--r-- | vcl/unx/generic/glyphs/freetype_glyphcache.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/vcl/unx/generic/glyphs/freetype_glyphcache.cxx b/vcl/unx/generic/glyphs/freetype_glyphcache.cxx index 2f26cceb13ea..79744b2353df 100644 --- a/vcl/unx/generic/glyphs/freetype_glyphcache.cxx +++ b/vcl/unx/generic/glyphs/freetype_glyphcache.cxx @@ -1098,6 +1098,9 @@ private: sal_uInt16 mnPoints; sal_uInt16 mnPoly; bool bHasOffline; + + PolyArgs(const PolyArgs&) = delete; + PolyArgs& operator=(const PolyArgs&) = delete; }; PolyArgs::PolyArgs( tools::PolyPolygon& rPolyPoly, sal_uInt16 nMaxPoints ) |