diff options
Diffstat (limited to 'sfx2/source/dialog/mgetempl.cxx')
-rw-r--r-- | sfx2/source/dialog/mgetempl.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sfx2/source/dialog/mgetempl.cxx b/sfx2/source/dialog/mgetempl.cxx index 546210021d3f..cedbdc1f8f4c 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 |