summaryrefslogtreecommitdiff
path: root/uui
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2022-11-21 15:44:08 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-11-22 05:38:48 +0100
commitef6684337a3a99d6a1620e6cdb569888a77cacf8 (patch)
treead74ef842e90cd7b72fe806b969e2b62e65d5850 /uui
parenta41c82407bbb73a4d87070326485ec4b4e954a65 (diff)
loplugin:unusedfields
Change-Id: Idaf9742358bcd485d6ac96593844b05bf0972fa7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/143014 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'uui')
-rw-r--r--uui/source/unknownauthdlg.cxx1
-rw-r--r--uui/source/unknownauthdlg.hxx1
2 files changed, 0 insertions, 2 deletions
diff --git a/uui/source/unknownauthdlg.cxx b/uui/source/unknownauthdlg.cxx
index 9c96c7ba1dd4..783e6c3f48a4 100644
--- a/uui/source/unknownauthdlg.cxx
+++ b/uui/source/unknownauthdlg.cxx
@@ -50,7 +50,6 @@ UnknownAuthDialog::UnknownAuthDialog(
, m_xCommandButtonOK(m_xBuilder->weld_button("ok"))
, m_xView_Certificate(m_xBuilder->weld_button("examine"))
, m_xOptionButtonAccept(m_xBuilder->weld_radio_button("accept"))
- , m_xOptionButtonDontAccept(m_xBuilder->weld_radio_button("reject"))
, m_xContext(xContext)
, m_rXCert(rXCert)
{
diff --git a/uui/source/unknownauthdlg.hxx b/uui/source/unknownauthdlg.hxx
index 6c51ec4ebd3e..6e45a5d1db4b 100644
--- a/uui/source/unknownauthdlg.hxx
+++ b/uui/source/unknownauthdlg.hxx
@@ -31,7 +31,6 @@ private:
std::unique_ptr<weld::Button> m_xCommandButtonOK;
std::unique_ptr<weld::Button> m_xView_Certificate;
std::unique_ptr<weld::RadioButton> m_xOptionButtonAccept;
- std::unique_ptr<weld::RadioButton> m_xOptionButtonDontAccept;
const css::uno::Reference< css::uno::XComponentContext >& m_xContext;
const css::uno::Reference< css::security::XCertificate >& m_rXCert;