summaryrefslogtreecommitdiffstats
path: root/cui/source/dialogs
diff options
context:
space:
mode:
authorSerge Krot <Serge.Krot@cib.de>2017-11-14 15:29:47 +0100
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2017-11-14 22:09:58 +0100
commit27e4a3c4e364d1858eb3e77348ee78c6c6d33cf1 (patch)
treebfc5e160186cc84c4e0f4a194f3ea72e223a55d7 /cui/source/dialogs
parentclang-format fix (diff)
downloadcore-27e4a3c4e364d1858eb3e77348ee78c6c6d33cf1.tar.gz
core-27e4a3c4e364d1858eb3e77348ee78c6c6d33cf1.zip
related tdf#113807: Clean up Links dialog: remove useless hidden button
Change-Id: I0e8f9d7b538dd094d53cda69517e94fbafd0d752 Reviewed-on: https://gerrit.libreoffice.org/44725 Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de> Tested-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Diffstat (limited to 'cui/source/dialogs')
-rw-r--r--cui/source/dialogs/linkdlg.cxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/cui/source/dialogs/linkdlg.cxx b/cui/source/dialogs/linkdlg.cxx
index 4ffa5c090cad..6d61767457a5 100644
--- a/cui/source/dialogs/linkdlg.cxx
+++ b/cui/source/dialogs/linkdlg.cxx
@@ -108,7 +108,6 @@ SvBaseLinksDlg::SvBaseLinksDlg( vcl::Window * pParent, LinkManager* pMgr, bool b
get(m_pRbAutomatic, "AUTOMATIC");
get(m_pRbManual, "MANUAL");
get(m_pPbUpdateNow, "UPDATE_NOW");
- get(m_pPbOpenSource, "OPEN");
get(m_pPbChangeSource, "CHANGE_SOURCE");
get(m_pPbBreakLink, "BREAK_LINK");
@@ -126,8 +125,6 @@ SvBaseLinksDlg::SvBaseLinksDlg( vcl::Window * pParent, LinkManager* pMgr, bool b
aUpdateIdle.SetInvokeHandler( LINK( this, SvBaseLinksDlg, UpdateWaitingHdl ) );
aUpdateIdle.SetPriority( TaskPriority::LOWEST );
- m_pPbOpenSource->Hide();
-
m_pTbLinks->SetSelectHdl( LINK( this, SvBaseLinksDlg, LinksSelectHdl ) );
m_pTbLinks->SetDoubleClickHdl( LINK( this, SvBaseLinksDlg, LinksDoubleClickHdl ) );
m_pRbAutomatic->SetClickHdl( LINK( this, SvBaseLinksDlg, AutomaticClickHdl ) );
@@ -156,7 +153,6 @@ void SvBaseLinksDlg::dispose()
m_pRbAutomatic.clear();
m_pRbManual.clear();
m_pPbUpdateNow.clear();
- m_pPbOpenSource.clear();
m_pPbChangeSource.clear();
m_pPbBreakLink.clear();
ModalDialog::dispose();