From f147b160aef1735d34c488353a7d4b875788a7e1 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 11 Feb 2020 15:56:21 +0200 Subject: clang-analyzer-deadcode.DeadStores Change-Id: Ifa384933569b27d0d08eb479bb95b799163ae386 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88450 Tested-by: Jenkins Reviewed-by: Noel Grandin --- toolkit/source/awt/vclxtoolkit.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'toolkit') diff --git a/toolkit/source/awt/vclxtoolkit.cxx b/toolkit/source/awt/vclxtoolkit.cxx index 8a61a99e3f3c..01c0d3cd2499 100644 --- a/toolkit/source/awt/vclxtoolkit.cxx +++ b/toolkit/source/awt/vclxtoolkit.cxx @@ -267,7 +267,6 @@ void MessBox::ImplPosControls() Size aMEditSize; long nTitleWidth; long nButtonSize = ImplGetButtonSize(); - long nMaxWidth = GetDesktopRectPixel().GetWidth()-8; long nMaxLineWidth; long nWidth; WinBits nWinStyle = WB_LEFT | WB_NOLABEL; @@ -280,7 +279,7 @@ void MessBox::ImplPosControls() OUString aMessText(maMessText.replaceAll("\t", " ")); //If window too small, we make dialog box be wider - nMaxWidth = 630 * GetDPIScaleFactor(); + long nMaxWidth = 630 * GetDPIScaleFactor(); // MessagBox should be at least as wide as to see the title // Extra-Width for Close button, because Close button is set after this call -- cgit