From 6d40302d89e1a72841c8a64733c7a26080a65cb8 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Sun, 15 Mar 2020 18:31:45 +0200 Subject: Revert "loplugin:constfields in unotools..uui" This reverts commit d8ac55e3e53564aca4b0bade5a5b5cb01b4519b1. Change-Id: Ib7cf67d5d0b7780dfde9453cdddb8f11ca5d3a6a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90542 Tested-by: Jenkins Reviewed-by: Noel Grandin --- uui/source/fltdlg.cxx | 2 +- uui/source/logindlg.hxx | 4 ++-- uui/source/passworddlg.hxx | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'uui') diff --git a/uui/source/fltdlg.cxx b/uui/source/fltdlg.cxx index 49c2f82cb618..391cf5a70b25 100644 --- a/uui/source/fltdlg.cxx +++ b/uui/source/fltdlg.cxx @@ -164,7 +164,7 @@ class StringCalculator : public ::cppu::WeakImplHelper< css::util::XStringWidth } private: - weld::Widget* const m_pDevice; + weld::Widget* m_pDevice; }; } diff --git a/uui/source/logindlg.hxx b/uui/source/logindlg.hxx index 1c1fc39cd1fe..ff799f4501ff 100644 --- a/uui/source/logindlg.hxx +++ b/uui/source/logindlg.hxx @@ -51,8 +51,8 @@ class LoginDialog : public weld::GenericDialogController std::unique_ptr m_xSavePasswdBtn; std::unique_ptr m_xUseSysCredsCB; std::unique_ptr m_xOKBtn; - OUString const m_server; - OUString const m_realm; + OUString m_server; + OUString m_realm; void HideControls_Impl( LoginFlags nFlags ); void EnableUseSysCredsControls_Impl( bool bUseSysCredsEnabled ); diff --git a/uui/source/passworddlg.hxx b/uui/source/passworddlg.hxx index 302c6cff5388..2f9c21b71f39 100644 --- a/uui/source/passworddlg.hxx +++ b/uui/source/passworddlg.hxx @@ -31,7 +31,7 @@ class PasswordDialog : public weld::GenericDialogController std::unique_ptr m_xEDConfirmPassword; std::unique_ptr m_xOKBtn; sal_uInt16 nMinLen; - OUString const aPasswdMismatch; + OUString aPasswdMismatch; DECL_LINK(OKHdl_Impl, weld::Button&, void); -- cgit