[Libreoffice-commits] core.git: vcl/source
Tamas Bunth
tamas.bunth at collabora.co.uk
Thu Mar 1 14:35:02 UTC 2018
vcl/source/window/status.cxx | 3 ---
1 file changed, 3 deletions(-)
New commits:
commit a4ed3d9a1ffa1b51ba4352a955c950235f099fdc
Author: Tamas Bunth <tamas.bunth at collabora.co.uk>
Date: Thu Mar 1 15:32:18 2018 +0100
tdf#115353 Status bar: no cache in settext
Change-Id: I6c1312bbba553be738e23cee0c76d589c809dff8
Reviewed-on: https://gerrit.libreoffice.org/50584
Reviewed-by: Tamás Bunth <btomi96 at gmail.com>
Tested-by: Tamás Bunth <btomi96 at gmail.com>
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 ))
{
More information about the Libreoffice-commits
mailing list