summaryrefslogtreecommitdiff
path: root/vcl/opengl
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 /vcl/opengl
parent835ddd98d72617c2ed6ae6950f1fec0cc21b3ba2 (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 'vcl/opengl')
-rw-r--r--vcl/opengl/texture.cxx12
1 files changed, 2 insertions, 10 deletions
diff --git a/vcl/opengl/texture.cxx b/vcl/opengl/texture.cxx
index 2862cce52352..6536141c8134 100644
--- a/vcl/opengl/texture.cxx
+++ b/vcl/opengl/texture.cxx
@@ -561,16 +561,8 @@ OpenGLTexture::operator bool() const
OpenGLTexture& OpenGLTexture::operator=(const OpenGLTexture& rTexture)
{
- if (rTexture.mpImpl)
- rTexture.mpImpl->IncreaseRefCount(rTexture.mnSlotNumber);
-
- if (mpImpl)
- mpImpl->DecreaseRefCount(mnSlotNumber);
-
- maRect = rTexture.maRect;
- mpImpl = rTexture.mpImpl;
- mnSlotNumber = rTexture.mnSlotNumber;
-
+ OpenGLTexture aTemp(rTexture);
+ *this = std::move(aTemp);
return *this;
}