diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-07 17:33:16 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-07 17:51:39 +0200 |
commit | fb499c00744bd7ff5629be0db9ff98c6fb4844b6 (patch) | |
tree | 0346c1e38210ebed686076b23b2944c113d7cffe /svx/source | |
parent | 8737001fe8230ad301a716ec1f61b61ccd265422 (diff) |
clang-analyzer-deadcode.DeadStores
Change-Id: I9f495d748c2fe47fe5a91db21f44725fc00a7ed1
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/svdraw/svdopath.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdopath.cxx b/svx/source/svdraw/svdopath.cxx index 95e6ce86d9dd..3f047239b3be 100644 --- a/svx/source/svdraw/svdopath.cxx +++ b/svx/source/svdraw/svdopath.cxx @@ -794,7 +794,7 @@ bool ImpPathForDragAndCreate::movePathDrag( SdrDragStat& rDrag ) const // now check symmetric plus handles if (bControl) { // cases 5,6,7,8 sal_uInt16 nSt; // the associated support point - sal_uInt16 nFix=nPnt; // the opposing control point + sal_uInt16 nFix; // the opposing control point if (bIsNextControl) { // if the next one is a control point, the on before has to be a support point nSt=nPrevPnt; nFix=nPrevPrevPnt; |