summaryrefslogtreecommitdiff
path: root/dbaccess/source
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2024-06-20 11:58:23 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2024-06-20 14:03:21 +0200
commit86a827da7c71305be81624d25220d125ef00137a (patch)
tree344b645598a73375e0c27ceb506d0894fa72f54b /dbaccess/source
parent50f3443d59d457da8dd19e0520f317851f050469 (diff)
loplugin:unusedfields
Change-Id: I4bc67811e228b4806db9f9b9bf9fb0de0eb36de2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/169263 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'dbaccess/source')
-rw-r--r--dbaccess/source/ui/control/opendoccontrols.cxx7
-rw-r--r--dbaccess/source/ui/inc/opendoccontrols.hxx2
2 files changed, 3 insertions, 6 deletions
diff --git a/dbaccess/source/ui/control/opendoccontrols.cxx b/dbaccess/source/ui/control/opendoccontrols.cxx
index bb2558afd435..0c8dfa901c5b 100644
--- a/dbaccess/source/ui/control/opendoccontrols.cxx
+++ b/dbaccess/source/ui/control/opendoccontrols.cxx
@@ -91,16 +91,15 @@ namespace dbaui
// OpenButton
OpenDocumentButton::OpenDocumentButton(std::unique_ptr<weld::Button> xControl, const OUString& _rAsciiModuleName)
- : m_sModule( _rAsciiModuleName )
- , m_xControl(std::move(xControl))
+ : m_xControl(std::move(xControl))
{
// our label should equal the UI text of the "Open" command
- auto aProperties = vcl::CommandInfoProvider::GetCommandProperties(u".uno:Open"_ustr, m_sModule);
+ auto aProperties = vcl::CommandInfoProvider::GetCommandProperties(u".uno:Open"_ustr, _rAsciiModuleName);
OUString sLabel(vcl::CommandInfoProvider::GetLabelForCommand(aProperties));
m_xControl->set_label(" " + sLabel.replaceAll("~", ""));
// Place icon left of text and both centered in the button.
- m_xControl->set_image(GetCommandIcon(u".uno:Open"_ustr, m_sModule));
+ m_xControl->set_image(GetCommandIcon(u".uno:Open"_ustr, _rAsciiModuleName));
}
// OpenDocumentListBox
diff --git a/dbaccess/source/ui/inc/opendoccontrols.hxx b/dbaccess/source/ui/inc/opendoccontrols.hxx
index d0bfe63e8214..d2cca5281111 100644
--- a/dbaccess/source/ui/inc/opendoccontrols.hxx
+++ b/dbaccess/source/ui/inc/opendoccontrols.hxx
@@ -34,8 +34,6 @@ namespace dbaui
class OpenDocumentButton
{
private:
- OUString m_sModule;
-
std::unique_ptr<weld::Button> m_xControl;
public:
OpenDocumentButton(std::unique_ptr<weld::Button> xControl, const OUString& _rAsciiModuleName);