summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2023-11-14 11:58:56 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-11-14 15:40:52 +0100
commit5e8bc7bda667e994cfbdf9bf4d981175dff71bae (patch)
treed32ba83233a00929259ac1d5dc69e1bdb86299b0 /cui
parentf0481649c526e2ad934482487c2dc7fae49c8031 (diff)
loplugin:unusedfields
Change-Id: I5869e9974c37b1b525d316367f1dc5051d8aa197 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159404 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cui')
-rw-r--r--cui/source/options/optgdlg.hxx1
-rw-r--r--cui/source/options/optsave.cxx2
-rw-r--r--cui/source/options/optsave.hxx2
3 files changed, 0 insertions, 5 deletions
diff --git a/cui/source/options/optgdlg.hxx b/cui/source/options/optgdlg.hxx
index 0e09597ae268..2c62e569ea75 100644
--- a/cui/source/options/optgdlg.hxx
+++ b/cui/source/options/optgdlg.hxx
@@ -198,7 +198,6 @@ class OfaLanguagesTabPage : public SfxTabPage
std::unique_ptr<SvxLanguageBox> m_xAsianLanguageLB;
std::unique_ptr<SvxLanguageBox> m_xComplexLanguageLB;
std::unique_ptr<weld::CheckButton> m_xCurrentDocCB;
- std::unique_ptr<weld::Widget> m_xCurrentDocImg;
std::unique_ptr<weld::CheckButton> m_xAsianSupportCB;
std::unique_ptr<weld::Widget> m_xAsianSupportImg;
std::unique_ptr<weld::CheckButton> m_xCTLSupportCB;
diff --git a/cui/source/options/optsave.cxx b/cui/source/options/optsave.cxx
index 434a9823cffd..4c292a75ac3a 100644
--- a/cui/source/options/optsave.cxx
+++ b/cui/source/options/optsave.cxx
@@ -108,10 +108,8 @@ SvxSaveTabPage::SvxSaveTabPage(weld::Container* pPage, weld::DialogController* p
, m_xWarnAlienFormatCB(m_xBuilder->weld_check_button("warnalienformat"))
, m_xWarnAlienFormatImg(m_xBuilder->weld_widget("lockwarnalienformat"))
, m_xDocTypeLB(m_xBuilder->weld_combo_box("doctype"))
- , m_xDocTypeImg(m_xBuilder->weld_widget("lockdoctype"))
, m_xSaveAsFT(m_xBuilder->weld_label("saveas_label"))
, m_xSaveAsLB(m_xBuilder->weld_combo_box("saveas"))
- , m_xSaveAsImg(m_xBuilder->weld_widget("locksaveas"))
, m_xODFWarningFI(m_xBuilder->weld_widget("odfwarning_image"))
, m_xODFWarningFT(m_xBuilder->weld_label("odfwarning_label"))
{
diff --git a/cui/source/options/optsave.hxx b/cui/source/options/optsave.hxx
index b905c98e1d98..cb6d63a7e87e 100644
--- a/cui/source/options/optsave.hxx
+++ b/cui/source/options/optsave.hxx
@@ -69,10 +69,8 @@ private:
std::unique_ptr<weld::CheckButton> m_xWarnAlienFormatCB;
std::unique_ptr<weld::Widget> m_xWarnAlienFormatImg;
std::unique_ptr<weld::ComboBox> m_xDocTypeLB;
- std::unique_ptr<weld::Widget> m_xDocTypeImg;
std::unique_ptr<weld::Label> m_xSaveAsFT;
std::unique_ptr<weld::ComboBox> m_xSaveAsLB;
- std::unique_ptr<weld::Widget> m_xSaveAsImg;
std::unique_ptr<weld::Widget> m_xODFWarningFI;
std::unique_ptr<weld::Label> m_xODFWarningFT;