From a95888e6e62a702f4b9af4a68c44339b51dc283e Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Mon, 17 Feb 2014 12:44:14 +0000 Subject: Resolves: fdo#72233 too long style names over-stretch dialog Change-Id: Id6f102a3def1928ad8f6b4d27eb32f8c69bdba49 --- sfx2/source/dialog/mgetempl.cxx | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'sfx2/source/dialog/mgetempl.cxx') diff --git a/sfx2/source/dialog/mgetempl.cxx b/sfx2/source/dialog/mgetempl.cxx index b087613aec3e..b340f34cdcb1 100644 --- a/sfx2/source/dialog/mgetempl.cxx +++ b/sfx2/source/dialog/mgetempl.cxx @@ -54,16 +54,21 @@ SfxManageStyleSheetPage::SfxManageStyleSheetPage(Window* pParent, const SfxItemS { get(m_pNameRo, "namero"); get(m_pNameRw, "namerw"); + m_pNameRo->set_width_request(m_pNameRw->get_preferred_size().Width()); get(m_pAutoCB, "autoupdate"); get(m_pFollowFt, "nextstyleft"); get(m_pFollowLb, "nextstyle"); m_pFollowLb->SetStyle(m_pFollowLb->GetStyle() | WB_SORT); + const sal_Int32 nMaxWidth(62); + m_pFollowLb->setMaxWidthChars(nMaxWidth); get(m_pBaseFt, "linkedwithft"); get(m_pBaseLb, "linkedwith"); m_pBaseLb->SetStyle(m_pBaseLb->GetStyle() | WB_SORT); + m_pBaseLb->setMaxWidthChars(nMaxWidth); get(m_pFilterFt, "categoryft"); get(m_pFilterLb, "category"); m_pFilterLb->SetStyle(m_pFilterLb->GetStyle() | WB_SORT); + m_pFilterLb->setMaxWidthChars(nMaxWidth); get(m_pDescFt, "desc"); // this Page needs ExchangeSupport -- cgit