summaryrefslogtreecommitdiff
path: root/sw/source/ui
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-11-21 15:13:49 +0000
committerCaolán McNamara <caolanm@redhat.com>2018-11-21 22:10:00 +0100
commit6d250d56ed9b6755a3f8131be39fc0537c3d862c (patch)
tree1ba55f2c90cb88f546825af5a0a8de57a50e5c66 /sw/source/ui
parentc986c8852cd1156aee870d21cfb4044d3b05a933 (diff)
add TreeView header support
Change-Id: If3dd296e962b08120e07c35065bc18441691b7fd Reviewed-on: https://gerrit.libreoffice.org/63730 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw/source/ui')
-rw-r--r--sw/source/ui/chrdlg/swuiccoll.cxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/sw/source/ui/chrdlg/swuiccoll.cxx b/sw/source/ui/chrdlg/swuiccoll.cxx
index 66ba6f6d2f97..16fa6e1761db 100644
--- a/sw/source/ui/chrdlg/swuiccoll.cxx
+++ b/sw/source/ui/chrdlg/swuiccoll.cxx
@@ -51,10 +51,7 @@ SwCondCollPage::SwCondCollPage(TabPageParent pParent, const SfxItemSet &rSet)
, m_pFormat(nullptr)
, m_bNewTemplate(false)
, m_xConditionCB(m_xBuilder->weld_check_button("condstyle"))
- , m_xContextFT(m_xBuilder->weld_label("contextft"))
- , m_xUsedFT(m_xBuilder->weld_label("usedft"))
, m_xTbLinks(m_xBuilder->weld_tree_view("links"))
- , m_xStyleFT(m_xBuilder->weld_label("styleft"))
, m_xStyleLB(m_xBuilder->weld_tree_view("styles"))
, m_xFilterLB(m_xBuilder->weld_combo_box("filter"))
, m_xRemovePB(m_xBuilder->weld_button("remove"))
@@ -179,10 +176,7 @@ void SwCondCollPage::Reset(const SfxItemSet *)
IMPL_LINK(SwCondCollPage, OnOffHdl, weld::ToggleButton&, rBox, void)
{
const bool bEnable = rBox.get_active();
- m_xContextFT->set_sensitive(bEnable);
- m_xUsedFT->set_sensitive(bEnable);
m_xTbLinks->set_sensitive(bEnable);
- m_xStyleFT->set_sensitive(bEnable);
m_xStyleLB->set_sensitive(bEnable);
m_xFilterLB->set_sensitive(bEnable);
m_xRemovePB->set_sensitive(bEnable);