diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-19 10:37:58 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-10-19 13:08:29 +0200 |
commit | 367105e0248c7b80b60b2554d04f5f248b4259b3 (patch) | |
tree | 81b5406455f69b6c5587e7624967273ec36137e9 /UnoControls | |
parent | 6716ceec1c5b1a2ece26f91741253b2673e6e9e2 (diff) |
cleanup some local var declarations
found with
git grep -nP '(\w+)\s+=\s+\g1\(' | lots-of-hand-filtering
Change-Id: I598b0cfa6607823eaef09d95e610e05145c727f7
Diffstat (limited to 'UnoControls')
-rw-r--r-- | UnoControls/source/controls/progressmonitor.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/UnoControls/source/controls/progressmonitor.cxx b/UnoControls/source/controls/progressmonitor.cxx index 5c0e5a789a93..d3add993baea 100644 --- a/UnoControls/source/controls/progressmonitor.cxx +++ b/UnoControls/source/controls/progressmonitor.cxx @@ -419,8 +419,8 @@ Size SAL_CALL ProgressMonitor::getPreferredSize () throw( RuntimeException, std: Size aTopicSize_Top = xTopicLayout_Top->getPreferredSize (); Size aTopicSize_Bottom = xTopicLayout_Bottom->getPreferredSize (); Size aButtonSize = xButtonLayout->getPreferredSize (); - Rectangle aTempRectangle = m_xProgressBar->getPosSize(); - Size aProgressBarSize = Size( aTempRectangle.Width, aTempRectangle.Height ); + Rectangle aTempRectangle = m_xProgressBar->getPosSize(); + Size aProgressBarSize( aTempRectangle.Width, aTempRectangle.Height ); aGuard.clear (); |