diff options
author | Tamás Zolnai <tamas.zolnai@collabora.com> | 2019-04-09 16:44:34 +0200 |
---|---|---|
committer | Tamás Zolnai <tamas.zolnai@collabora.com> | 2019-04-10 01:06:19 +0200 |
commit | 3a5d78365dd172881c16c03e67f2d170ffc6d7d4 (patch) | |
tree | 55142243eef76b984f1be86f729e19c4327bf4f5 /vcl/unx/generic | |
parent | 8e9de1ad055d1d8f41a6cf6d8cea245463f61d40 (diff) |
clang-tidy: Fix suspicious catches of WIP unhandled-self-assignment check
Change-Id: I1cb16b180f4cc5bf4d65485f03c44a06414d3580
Reviewed-on: https://gerrit.libreoffice.org/70481
Tested-by: Jenkins
Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com>
Diffstat (limited to 'vcl/unx/generic')
-rw-r--r-- | vcl/unx/generic/printer/jobdata.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/vcl/unx/generic/printer/jobdata.cxx b/vcl/unx/generic/printer/jobdata.cxx index 8f2b0018ca07..02d10cf48077 100644 --- a/vcl/unx/generic/printer/jobdata.cxx +++ b/vcl/unx/generic/printer/jobdata.cxx @@ -29,6 +29,9 @@ using namespace psp; JobData& JobData::operator=(const JobData& rRight) { + if(this == &rRight) + return *this; + m_nCopies = rRight.m_nCopies; m_bCollate = rRight.m_bCollate; m_nLeftMarginAdjust = rRight.m_nLeftMarginAdjust; |