diff options
author | Tamás Zolnai <tamas.zolnai@collabora.com> | 2019-04-09 16:43:39 +0200 |
---|---|---|
committer | Tamás Zolnai <tamas.zolnai@collabora.com> | 2019-04-10 12:18:24 +0200 |
commit | adfba503c792fdbd4748d6680c2dd8d8d5bb0d69 (patch) | |
tree | 88fe08b0bd11b07641022f8aae90b3a3106021e8 /sw | |
parent | 835ddd98d72617c2ed6ae6950f1fec0cc21b3ba2 (diff) |
clang-tidy: Silence warnings from WIP unhandled-self-assignment check
Where it can be done by removing useless / duplicate code.
For XFListStyle I removed the copy operator entirely, because it
was bugous and it seems not to be used anyway.
Change-Id: Iba0eb0d5c45b42f0e78be466c617acdc1216eb22
Reviewed-on: https://gerrit.libreoffice.org/70482
Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com>
Tested-by: Tamás Zolnai <tamas.zolnai@collabora.com>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/layout/pagedesc.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sw/source/core/layout/pagedesc.cxx b/sw/source/core/layout/pagedesc.cxx index 49933eb472fe..2e3a122655e6 100644 --- a/sw/source/core/layout/pagedesc.cxx +++ b/sw/source/core/layout/pagedesc.cxx @@ -515,8 +515,7 @@ SwPageDescExt & SwPageDescExt::operator = (const SwPageDesc & rSrc) SwPageDescExt & SwPageDescExt::operator = (const SwPageDescExt & rSrc) { - SetPageDesc(rSrc.m_PageDesc); - + operator=(rSrc.m_PageDesc); return *this; } |