diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-03-15 18:31:45 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-03-16 08:21:14 +0100 |
commit | 6d40302d89e1a72841c8a64733c7a26080a65cb8 (patch) | |
tree | e85fdf8b60f587e2fd016d8299dc1ced1ee650e4 /uui | |
parent | 1133c399ff7a5d33c5351f776cc24d3b48592eba (diff) |
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 <noel.grandin@collabora.co.uk>
Diffstat (limited to 'uui')
-rw-r--r-- | uui/source/fltdlg.cxx | 2 | ||||
-rw-r--r-- | uui/source/logindlg.hxx | 4 | ||||
-rw-r--r-- | uui/source/passworddlg.hxx | 2 |
3 files changed, 4 insertions, 4 deletions
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<weld::CheckButton> m_xSavePasswdBtn; std::unique_ptr<weld::CheckButton> m_xUseSysCredsCB; std::unique_ptr<weld::Button> 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<weld::Entry> m_xEDConfirmPassword; std::unique_ptr<weld::Button> m_xOKBtn; sal_uInt16 nMinLen; - OUString const aPasswdMismatch; + OUString aPasswdMismatch; DECL_LINK(OKHdl_Impl, weld::Button&, void); |