diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-09-01 10:30:11 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-09-01 18:35:58 +0200 |
commit | 9c4ae2ac2b13f9c0f034f64fb7ad0b4dcae3bb96 (patch) | |
tree | 5489446160f2c5dd346f40124fd23473926607db /svx/source/form | |
parent | 5a098fea05fd32d8473730bbf7d35c36540c9df3 (diff) |
loplugin:unusedfields
Change-Id: I73e94fe2bcf6e206ae8f78380abf2a399aa6dc01
Reviewed-on: https://gerrit.libreoffice.org/78365
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/form')
-rw-r--r-- | svx/source/form/databaselocationinput.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/svx/source/form/databaselocationinput.cxx b/svx/source/form/databaselocationinput.cxx index ab13de1444a2..6d49c7dd2eff 100644 --- a/svx/source/form/databaselocationinput.cxx +++ b/svx/source/form/databaselocationinput.cxx @@ -74,7 +74,6 @@ namespace svx private: const Reference<XComponentContext> m_xContext; URLBox& m_rLocationInput; - weld::Button& m_rBrowseButton; weld::Window& m_rDialog; Sequence< OUString > m_aFilterExtensions; OUString m_sFilterUIName; @@ -85,7 +84,6 @@ namespace svx URLBox& _rLocationInput, weld::Button& _rBrowseButton, weld::Window& _rDialog) :m_xContext( _rContext ) ,m_rLocationInput( _rLocationInput ) - ,m_rBrowseButton( _rBrowseButton ) ,m_rDialog( _rDialog ) ,m_aFilterExtensions() ,m_sFilterUIName() @@ -101,7 +99,7 @@ namespace svx aExtensionList.append( ';' ); } m_rLocationInput.SetFilter( aExtensionList.makeStringAndClear() ); - m_rBrowseButton.connect_clicked(LINK(this, DatabaseLocationInputController_Impl, OnButtonAction)); + _rBrowseButton.connect_clicked(LINK(this, DatabaseLocationInputController_Impl, OnButtonAction)); } bool DatabaseLocationInputController_Impl::prepareCommit() |