diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2017-07-23 02:04:33 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-23 20:48:24 +0200 |
commit | 741d794adc0fabbcfb9ef847ad0369d7281b964d (patch) | |
tree | b8f9e5f295f136c15b55c6b52361b56e2a1ce354 /editeng | |
parent | 4f3ce1233cfdeb8e159b5c68858167fc586f734b (diff) |
editeng: remove bogus copy ctor
default copy ctor and assignment is deleted because AttribsType
(vector<unique_ptr<T>>) can't be copied
Change-Id: Ifb95298591c3f0ed5eb04a119efeb065a3eb8705
Reviewed-on: https://gerrit.libreoffice.org/40330
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/editeng/editdoc.hxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/editeng/source/editeng/editdoc.hxx b/editeng/source/editeng/editdoc.hxx index 6a3a700df70e..a2a8549ec632 100644 --- a/editeng/source/editeng/editdoc.hxx +++ b/editeng/source/editeng/editdoc.hxx @@ -192,8 +192,6 @@ private: SvxFont aDefFont; // faster than ever from the pool! bool bHasEmptyAttribs; - CharAttribList( const CharAttribList& ) {} - public: CharAttribList(); ~CharAttribList(); |