diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-11-18 16:28:11 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-11-21 10:05:30 +0100 |
commit | 727141098b7d7bfed65e64d2062042269a8f6088 (patch) | |
tree | 501a17c09c13644185c6bc566db165cf59a24099 /extensions | |
parent | ab10008ecaa33228838115a0b714e4f118c07ac1 (diff) |
loplugin:unusedfields start removing unused weld fields
Change-Id: If736ff669ffe24c3dd111c26285c19fc65806a3d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142946
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/dbpilots/controlwizard.cxx | 1 | ||||
-rw-r--r-- | extensions/source/dbpilots/controlwizard.hxx | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/extensions/source/dbpilots/controlwizard.cxx b/extensions/source/dbpilots/controlwizard.cxx index 5b4ed61dee92..13fa2980683a 100644 --- a/extensions/source/dbpilots/controlwizard.cxx +++ b/extensions/source/dbpilots/controlwizard.cxx @@ -150,7 +150,6 @@ namespace dbp m_xFormDatasource = m_xBuilder->weld_label("datasource"); m_xFormDatasourceLabel = m_xBuilder->weld_label("datasourcelabel"); m_xFormTable = m_xBuilder->weld_label("formtable"); - m_xFormTableLabel = m_xBuilder->weld_label("formtablelabel"); const OControlWizardContext& rContext = getContext(); if ( rContext.bEmbedded ) diff --git a/extensions/source/dbpilots/controlwizard.hxx b/extensions/source/dbpilots/controlwizard.hxx index cf55c655e574..22e7feca1a5b 100644 --- a/extensions/source/dbpilots/controlwizard.hxx +++ b/extensions/source/dbpilots/controlwizard.hxx @@ -49,7 +49,6 @@ namespace dbp std::unique_ptr<weld::Label> m_xFormDatasource; std::unique_ptr<weld::Label> m_xFormContentTypeLabel; std::unique_ptr<weld::Label> m_xFormContentType; - std::unique_ptr<weld::Label> m_xFormTableLabel; std::unique_ptr<weld::Label> m_xFormTable; std::unique_ptr<weld::Frame> m_xFrame; |