From 6ad8972d4b698617404e53d63f178e34b2d5358a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= Date: Mon, 4 Nov 2013 14:39:46 +0000 Subject: [PATCH] Resolves: fdo#70588 MultiLineEdits don't need WB_WORDBREAK set and inherits from Edit which reuses that same bit for password Change-Id: Ice27caecfd82e2dd7b000474f37b601fd4628766 --- vcl/source/window/layout.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcl/source/window/layout.cxx b/vcl/source/window/layout.cxx index 34bf83a8c786..5c0264aee44f 100644 --- a/vcl/source/window/layout.cxx +++ b/vcl/source/window/layout.cxx @@ -2043,7 +2043,7 @@ short MessageDialog::Execute() m_pImage->set_valign(VCL_ALIGN_START); m_pImage->Show(); - WinBits nWinStyle = WB_CLIPCHILDREN | WB_LEFT | WB_VCENTER | WB_WORDBREAK | WB_NOLABEL | WB_NOTABSTOP; + WinBits nWinStyle = WB_CLIPCHILDREN | WB_LEFT | WB_VCENTER | WB_NOLABEL | WB_NOTABSTOP; bool bHasSecondaryText = !m_sSecondaryString.isEmpty();