diff options
author | Tamas Bunth <tamas.bunth@collabora.co.uk> | 2018-03-01 15:32:18 +0100 |
---|---|---|
committer | Tamás Bunth <btomi96@gmail.com> | 2018-03-01 15:34:37 +0100 |
commit | a4ed3d9a1ffa1b51ba4352a955c950235f099fdc (patch) | |
tree | 0c03efd0295fa0361484de6d1b2892ede7de66d4 | |
parent | 2ead0d1ea024ec8771615400d699194b2fc44efe (diff) |
tdf#115353 Status bar: no cache in settext
Change-Id: I6c1312bbba553be738e23cee0c76d589c809dff8
Reviewed-on: https://gerrit.libreoffice.org/50584
Reviewed-by: Tamás Bunth <btomi96@gmail.com>
Tested-by: Tamás Bunth <btomi96@gmail.com>
-rw-r--r-- | vcl/source/window/status.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/vcl/source/window/status.cxx b/vcl/source/window/status.cxx index 8cfcaca3071f..5acbb2457012 100644 --- a/vcl/source/window/status.cxx +++ b/vcl/source/window/status.cxx @@ -1169,9 +1169,6 @@ void StatusBar::SetItemText( sal_uInt16 nItemId, const OUString& rText ) std::unique_ptr<SalLayout> pSalLayout = ImplLayout(pItem->maText,0,-1); long nWidth = GetTextWidth( pItem->maText,0,-1,nullptr,pSalLayout.get() ) + nFudge; - // update cache - pItem->mxLayoutCache = std::move(pSalLayout); - if( (nWidth > pItem->mnWidth + STATUSBAR_OFFSET) || ((nWidth < pItem->mnWidth) && (mnDX - STATUSBAR_OFFSET) < mnItemsWidth )) { |