diff options
author | Noel Grandin <noel@peralex.com> | 2016-05-18 12:33:22 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-05-19 06:43:39 +0000 |
commit | 35b3ae2ceb6e647c44f1a8adc9d7b0548a3ca383 (patch) | |
tree | 07c3e481db2a8c8850c96e2b53f4ff9e68cf2786 /svx | |
parent | b73f45ef0bf3230275c11fc9c70c22625332b695 (diff) |
clang-tidy clang-analyzer-alpha.core.IdenticalExpr
Change-Id: I110d8d63d5a6657c18aba97227c046027eb8f7f4
Reviewed-on: https://gerrit.libreoffice.org/25086
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/svdraw/svdundo.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdundo.cxx b/svx/source/svdraw/svdundo.cxx index 675edb830ae7..abc459fdfddb 100644 --- a/svx/source/svdraw/svdundo.cxx +++ b/svx/source/svdraw/svdundo.cxx @@ -648,7 +648,7 @@ void SdrUndoGeoObj::Undo() if (pTableObj && mbSkipChangeLayout) pTableObj->SetSkipChangeLayout(true); pObj->SetGeoData(*pUndoGeo); - if (pTableObj && mbSkipChangeLayout && pTableObj) + if (pTableObj && mbSkipChangeLayout) pTableObj->SetSkipChangeLayout(false); } } |