diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-02-21 15:50:06 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-02-22 07:38:51 +0100 |
commit | e0c9956a76514279a6df27f9752763e1ea20abbd (patch) | |
tree | ff226f970960b7e1cdac3180784e0c8635cb2398 /uui | |
parent | de9acc1dd0b72d1af92ac4de97840d98d4977820 (diff) |
loplugin:unusedfields in uui
Change-Id: I4b5f359dd7af170bcdee5343078e4e36eeebdc85
Reviewed-on: https://gerrit.libreoffice.org/68158
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'uui')
-rw-r--r-- | uui/source/iahndl-authentication.cxx | 1 | ||||
-rw-r--r-- | uui/source/loginerr.hxx | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/uui/source/iahndl-authentication.cxx b/uui/source/iahndl-authentication.cxx index 6103f876e209..114cf8b87563 100644 --- a/uui/source/iahndl-authentication.cxx +++ b/uui/source/iahndl-authentication.cxx @@ -236,7 +236,6 @@ handleAuthenticationRequest_( } LoginErrorInfo aInfo; - aInfo.SetTitle(rRequest.ServerName); aInfo.SetServer(rRequest.ServerName); if (rRequest.HasAccount) aInfo.SetAccount(rRequest.Account); diff --git a/uui/source/loginerr.hxx b/uui/source/loginerr.hxx index bdfb7f06c19a..76973684c855 100644 --- a/uui/source/loginerr.hxx +++ b/uui/source/loginerr.hxx @@ -34,7 +34,6 @@ class LoginErrorInfo { private: - OUString m_aTitle; OUString m_aServer; OUString m_aAccount; OUString m_aUserName; @@ -72,8 +71,6 @@ public: sal_uInt8 GetFlags() const { return m_nFlags; } DialogMask GetResult() const { return m_nRet; } - void SetTitle( const OUString& aTitle ) - { m_aTitle = aTitle; } void SetServer( const OUString& aServer ) { m_aServer = aServer; } void SetAccount( const OUString& aAccount ) |