diff options
author | Noel Grandin <noel@peralex.com> | 2016-05-19 12:47:50 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-05-20 07:55:30 +0000 |
commit | 8a2149c1059c70d67b4897e8a7751cf028a5136b (patch) | |
tree | 10d01599b5b5b2ea1d361c32d438cf47371f21ae /sc/source/ui/view/printfun.cxx | |
parent | 1b89a57aa5ac4faf59bc1e13eb1e0cad9933bacc (diff) |
clang-tidy misc-assign-operator-signature
Change-Id: I2953a88d9e2f5923732865ef17615d5928ac5f5f
Reviewed-on: https://gerrit.libreoffice.org/25154
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sc/source/ui/view/printfun.cxx')
-rw-r--r-- | sc/source/ui/view/printfun.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/view/printfun.cxx b/sc/source/ui/view/printfun.cxx index 26851bc47b73..292b9d1de392 100644 --- a/sc/source/ui/view/printfun.cxx +++ b/sc/source/ui/view/printfun.cxx @@ -109,7 +109,7 @@ ScPageRowEntry::ScPageRowEntry(const ScPageRowEntry& r) pHidden = nullptr; } -const ScPageRowEntry& ScPageRowEntry::operator=(const ScPageRowEntry& r) +ScPageRowEntry& ScPageRowEntry::operator=(const ScPageRowEntry& r) { delete[] pHidden; |