diff options
author | Andras Timar <atimar@suse.com> | 2012-03-06 20:21:39 +0100 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2012-03-06 20:23:35 +0100 |
commit | c5e98e7598807037678727d93ee4d2cbf311db3e (patch) | |
tree | 5942989646f26b6fb503dea844daafa95a0a8c39 /framework | |
parent | 78e8d5f0d62f910b8561a1c4fd7ebd8ae4cfb9f8 (diff) |
remove pointless calculations
Diffstat (limited to 'framework')
-rw-r--r-- | framework/source/services/backingwindow.cxx | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/framework/source/services/backingwindow.cxx b/framework/source/services/backingwindow.cxx index 6bdc1a45a6bc..ace2caa7c7be 100644 --- a/framework/source/services/backingwindow.cxx +++ b/framework/source/services/backingwindow.cxx @@ -778,17 +778,12 @@ void BackingWindow::Resize() // #i93631# squeeze controls so they fit into the box // this can be necessary due to application font height which has small deviations // from the size set - const long nWDelta = 0; - const long nW2Delta = 0; - const long nPDelta = 0; const long nBDelta = maButtonImageSize.Height() + 10; const long nB2Delta = 3*maButtonImageSize.Height()/2; const long nLastDelta = maButtonImageSize.Height(); long nDiff = 0; - while( ( maControlRect.Top() + - (nWDelta - nDiff) + - (nW2Delta- nDiff) + - (nPDelta - nDiff) + + while( ( maControlRect.Top() - + 3 * nDiff + 3 * (nBDelta - nDiff) + (nB2Delta- nDiff) + nLastDelta @@ -797,15 +792,7 @@ void BackingWindow::Resize() nDiff++; } - long nYPos = maControlRect.Top(); - nYPos += nW2Delta - nDiff; - - nYPos += nWDelta - nDiff; - nYPos += nPDelta - nDiff; - - nYPos += nWDelta/2 - nDiff; - - nYPos = maControlRect.Top() + mnBtnTop; + long nYPos = maControlRect.Top() + mnBtnTop; maWriterButton.SetPosSizePixel( Point( maControlRect.Left() + mnBtnPos, nYPos ), Size( mnTextColumnWidth[0], maButtonImageSize.Height() ) ); maDrawButton.SetPosSizePixel( Point( maControlRect.Left() + mnBtnPos + mnColumnWidth[0], nYPos ), Size( mnTextColumnWidth[1], maButtonImageSize.Height() ) ); |