summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/inc
diff options
context:
space:
mode:
authorTamás Zolnai <tamas.zolnai@collabora.com>2019-04-09 16:43:39 +0200
committerTamás Zolnai <tamas.zolnai@collabora.com>2019-04-10 12:18:24 +0200
commitadfba503c792fdbd4748d6680c2dd8d8d5bb0d69 (patch)
tree88fe08b0bd11b07641022f8aae90b3a3106021e8 /lotuswordpro/inc
parentRemove spurious broken symlink (diff)
downloadcore-adfba503c792fdbd4748d6680c2dd8d8d5bb0d69.tar.gz
core-adfba503c792fdbd4748d6680c2dd8d8d5bb0d69.zip
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 'lotuswordpro/inc')
-rw-r--r--lotuswordpro/inc/xfilter/xfliststyle.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lotuswordpro/inc/xfilter/xfliststyle.hxx b/lotuswordpro/inc/xfilter/xfliststyle.hxx
index f4abb93a5b10..3cde9644a612 100644
--- a/lotuswordpro/inc/xfilter/xfliststyle.hxx
+++ b/lotuswordpro/inc/xfilter/xfliststyle.hxx
@@ -190,7 +190,7 @@ public:
XFListStyle(const XFListStyle& other);
- XFListStyle& operator=(const XFListStyle& other);
+ XFListStyle& operator=(const XFListStyle& other) = delete;
virtual ~XFListStyle() override;