summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-07-16 13:57:06 +0100
committerCaolán McNamara <caolanm@redhat.com>2018-07-16 18:02:42 +0200
commit508cb85217f0b1ed91a346520a8661e60f32f7ba (patch)
tree77a1eec9c89af964782dad53819f2bbb008bcc98
parent86dfa34c6d83b70923d462fecad316dafd9a1fc4 (diff)
tdf#118635 relative checkbox disabled on reopen
Change-Id: Ic52737e5122b1ae37390061a5f7cf17b69e7e665 Reviewed-on: https://gerrit.libreoffice.org/57498 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r--sw/source/ui/table/tabledlg.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sw/source/ui/table/tabledlg.cxx b/sw/source/ui/table/tabledlg.cxx
index ee4fb784772f..1690504aff99 100644
--- a/sw/source/ui/table/tabledlg.cxx
+++ b/sw/source/ui/table/tabledlg.cxx
@@ -175,14 +175,14 @@ IMPL_LINK( SwFormatTablePage, RelWidthClickHdl, weld::ToggleButton&, rBtn, void
bModified = true;
}
-IMPL_LINK(SwFormatTablePage, AutoClickHdl, weld::ToggleButton&, rControl, void)
+IMPL_LINK_NOARG(SwFormatTablePage, AutoClickHdl, weld::ToggleButton&, void)
{
bool bRestore = true,
bLeftEnable = false,
bRightEnable= false,
bWidthEnable= false,
bOthers = true;
- if (&rControl == m_xFullBtn.get())
+ if (m_xFullBtn->get_active())
{
m_xLeftMF->SetPrcntValue(0);
m_xRightMF->SetPrcntValue(0);
@@ -191,26 +191,26 @@ IMPL_LINK(SwFormatTablePage, AutoClickHdl, weld::ToggleButton&, rControl, void)
bFull = true;
bRestore = false;
}
- else if (&rControl == m_xLeftBtn.get())
+ else if (m_xLeftBtn->get_active())
{
bRightEnable = bWidthEnable = true;
m_xLeftMF->SetPrcntValue(0);
}
- else if (&rControl == m_xFromLeftBtn.get())
+ else if (m_xFromLeftBtn->get_active())
{
bLeftEnable = bWidthEnable = true;
m_xRightMF->SetPrcntValue(0);
}
- else if (&rControl == m_xRightBtn.get())
+ else if (m_xRightBtn->get_active())
{
bLeftEnable = bWidthEnable = true;
m_xRightMF->SetPrcntValue(0);
}
- else if (&rControl == m_xCenterBtn.get())
+ else if (m_xCenterBtn->get_active())
{
bLeftEnable = bWidthEnable = true;
}
- else if (&rControl == m_xFreeBtn.get())
+ else if (m_xFreeBtn->get_active())
{
RightModify();
bLeftEnable = true;