diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2018-10-27 10:41:39 +0200 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2018-10-27 11:43:24 +0200 |
commit | bb702103f210cd344d8e700ece27f3708aab8eaf (patch) | |
tree | 51660f58522e9ac437e21dfaa09663523976013e | |
parent | 6ef1eac70343d7867e24fa4830081640b0e20351 (diff) |
tdf#120703 PVS: V519 variable is assigned values twice successively
V519 The 'aNewTextBoundingBox.Y2' variable is assigned values twice
successively. Perhaps this is a mistake. Check lines: 409, 411.
I have tried to check if that could possibly be a typo, and X1 was meant,
but it seems to be not the case here (doing that, or putting anything to
X1 instead of 0, just displaces the notes in the presenter console wrong
vertically).
Change-Id: Ie686b69bddc193568c1b5c0d18b9b7bf547313d1
Reviewed-on: https://gerrit.libreoffice.org/62410
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
-rw-r--r-- | sdext/source/presenter/PresenterNotesView.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sdext/source/presenter/PresenterNotesView.cxx b/sdext/source/presenter/PresenterNotesView.cxx index 20c1525d7565..900340b56fab 100644 --- a/sdext/source/presenter/PresenterNotesView.cxx +++ b/sdext/source/presenter/PresenterNotesView.cxx @@ -406,7 +406,6 @@ void PresenterNotesView::Layout() mxToolBarWindow->setPosSize(0, aWindowBox.Height - nToolBarHeight, sal_Int32(aToolBarSize.Width + 0.5), nToolBarHeight, awt::PosSize::POSSIZE); - aNewTextBoundingBox.Y2 -= nToolBarHeight; mnSeparatorYLocation = aWindowBox.Height - nToolBarHeight - gnSpaceBelowSeparator; aNewTextBoundingBox.Y2 = mnSeparatorYLocation - gnSpaceAboveSeparator; // Place the close button. |